Rate Your Experience
Thank you for using our website. If you had a good experience, or if we could have done something better, please let us know!
$('document').ready(function(){ $('.rate label').click(function(){ // console.log('rating...'); // pause form DOM to checkmark this thing then check setTimeout(function(){ var isGood = $('#star4').is(":checked") || $('#star5').is(":checked"); console.log('rating is good: ' + isGood); if(!isGood){ $('.not-good').show('slow'); $('.yes-good').hide(); } else { $('.yes-good').show('slow'); $('.not-good').hide(); } },500);
}); });