Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.                     var radioChecked = false;
  2.                     jQuery(".title input:radio").each(function () {
  3.                         if (jQuery(this :checked)) {
  4.                             radioChecked = true;
  5.                             break;
  6.                         };
  7.                     });
  8.                     if(!radioChecked) {
  9.                         alert('You must select a course for the conference.');
  10.                         addHiglight(document.regForm.name);
  11.                         return false;                      
  12.                     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement