$(document).ready(function(){
$('#quiz_submit_button').click(function(){
// check they answered everything
if ($('input[@type="radio"]:checked').size() != $('.question').size()) {
alert('Please answer every question.');
return false;
};
return true;
});
});
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.