Advertisement
Guest User

Untitled

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