/ Published in: jQuery

Vérifie si une checkbox a été cochée
Expand |
Embed | Plain Text
function checkOneChecked () { if ($("input[type=checkbox][checked]").length != 0) { return true; } return false; }
You need to login to post a comment.