Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You forgot the 'if' on the target form. Instead of</p> <pre><code> $(document).ready(function(){ $('#targetForm').submit(function(e){ e.preventDefault(); closeOpenBoxes(); }); }); function closeOpenBoxes(){ if($('.missingBox:visible').length &gt; 0){ $('.missingBox:visible').slideUp('fast', function(){ validateForm(); }); } else{ validateForm(); } } function validateForm(){ if($('#first_name').val() == ''){ $('#firstNameBox').slideDown(); } else{ if($('#last_name').val() == ''){ $('#lastNameBox').slideDown(); } else{ if($('#company').val() == ''){ $('#companyBox').slideDown(); } else{ if($('#country').val() == ''){ $('#countryBox').slideDown(); } else{ if($('#email').val() == ''){ $('#emailBox').slideDown(); } else{ $('#targetForm').unbind(); $('#targetForm').submit(); } } } } } } </code></pre> <p>Use</p> <pre><code> $(document).ready(function(){ $('#targetForm').submit(function(e){ e.preventDefault(); closeOpenBoxes(); }); }); function closeOpenBoxes(){ if($('.missingBox:visible').length &gt; 0){ $('.missingBox:visible').slideUp('fast', function(){ validateForm(); }); } else{ validateForm(); } } function validateForm(){ if($('#first_name').val() == ''){ $('#firstNameBox').slideDown(); } else{ if($('#last_name').val() == ''){ $('#lastNameBox').slideDown(); } else{ if($('#company').val() == ''){ $('#companyBox').slideDown(); } else{ if($('#country').val() == ''){ $('#countryBox').slideDown(); } else{ if($('#email').val() == ''){ $('#emailBox').slideDown(); } else{ if $('#targetForm').unbind(); $('#targetForm').submit(); } } } } } } </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload