Radio Button Check W/ JQuery
What would be the best way to loop through all radio buttons on my page and alert the user if one of them is unchecked for a particular question? Note: there are multiple questions
Solution 1:
if (undefined === $("input[name='answer8']:checked").val()) {
// do something
}
Post a Comment for "Radio Button Check W/ JQuery"