/* Count of all checked checkboxes on a page using JQuery / Javascript */
$(document).ready( function() { $('#submit').click( function() { var count=0; count = $(":checkbox:checked").length; alert("count: "+count); return false; } ); });
Please post any queries and comments here.
Subscribe in a reader
No comments:
Post a Comment
Please post any queries and comments here.