[jQuery] Re: Highlight a table row on radio button click

2009-04-16 Thread David
//Find all the check boxes in your table. $("#mytable :checkbox).click( function(){ // Set the currently selected item to be not selected. Comment out the following line if you meant the ability to select multiples. $(".selected").removeClass("selected"); // Get the parent of the

[jQuery] Re: Highlight a table row on radio button click

2009-04-16 Thread Raja Koduru
Nitin, paste some code/snippets here. Will help us to help you. -raja On Thu, Apr 16, 2009 at 5:48 PM, Nitin Gautam wrote: > > I have a table in which each row has radio botton in first td. > I have to make a code so that when user click on radio button that row > get highlighted . > When click