Monday, July 4, 2011

multiple radio button and multiple select problem with javascript

form name="choose_seats" action="" method="post" onsubmit="return valid();" //this is in loopselect name="dep_boarding_point[$i]" option value=""--Select--/option php loop goes here /select//endinput type="radio" name="select_trip" id="select_trip" value="$i"close formthis is javascriptfunction checkRadio(){ var x=document.forms["choose_seats"]["select_trip"]; var uncheck = 0; var objLength = x.length;//this condition is for...
Read More »