It looks like nothing was found at this location.
$(document).on('click change', function() {
setTimeout(function() {
if ($('.chbs-main-content-step-2').length > 0 && $('.chbs-main-content-step-2').is(':visible')) {
$('.chbs-main-content-step-2 a.chbs-button').each(function() {
if ($(this).text().toLowerCase().includes('enter contact details')) {
$(this).text('NEXT');
}
});
}
}, 500);
});
});