
$(function() { $('#signup').on('click', function() { if ($(this).text() == 'Submit') { var button = $(this); if (jQuery('#email').val() != '') { $.post('http://heartlandtour.ca/oldsite/signup.php', { signup: true, email: $('#email').val() }, function(status) { $('#signup_form').slideUp('fast'); button.text('Subscribed!'); }); } else { $('#email').focus(); } } if ($(this).text() == 'Sign up for our Newsletter!') { $('#signup_form').slideDown('fast'); $(this).text('Submit'); }}); });