[jQuery] Re: how to uncheck the check box

2009-05-15 Thread Danny Nolan
Change to a standard radio group? --- On Fri, 5/15/09, bharani kumar wrote: From: bharani kumar Subject: [jQuery] how to uncheck the check box To: jquery-en@googlegroups.com Date: Friday, May 15, 2009, 9:38 AM Hi all Can u tell me , how to uncheck the check box , when i check another check bo

[jQuery] Re: how to uncheck the check box

2009-05-15 Thread Michael Lawson
Date: 05/15/2009 11:48 AM Subject: [jQuer

[jQuery] Re: how to uncheck the check box

2009-05-15 Thread Peter Edwards
There are a few ways to do this. You can select by class, in which case you give a group of checkboxes the same class $(function(){ // attach a click event to each checkbox whose class is 'onechecked' $(':checkbox.onechecked').click(function(){ // if the clicked checkbox is checked (no ne

[jQuery] Re: how to uncheck the check box

2009-05-15 Thread elubin
add a click handler to each checkbox (you could use a selector and loop through with $.each). when clicked, the function could use the same selected and loop through again making sure the others are off. Eric On May 15, 10:38 am, bharani kumar wrote: > Hi all > > Can u tell me , how to unche

[jQuery] Re: how to uncheck the check box

2009-05-15 Thread Jonathan Vanherpe (T & T NV)
bharani kumar wrote: Hi all Can u tell me , how to uncheck the check box , when i check another check box, for example having 4 check boxes, be default check box is checked ,. when i check the check box 2 , then need to uncheck the checked one , How to do this in jquery , Thanks Maybe