$("input[@type=checkbox][@checked]").each( function() { // Insert code here } );
Thanks Karthik www.f5Debug.net
Best Regards, Rohan Laghate
var checkboxes = $(':checkbox.myCheckboxGroup'); checkboxes.click(function(){ var self = this; checkboxes.each(function(){ if(this!=self) this.checked = '' }) })
Login to post response