I know this isnt exactly php but im working with php with these soo...
I want to detect an onChange() event using jscript, when the drop down OR radio buttons are changed I want to refresh the page and send their values to the page.
When the page refreshes I want the radio buttons and Dropdowns to show their selected values not revert back to the default. How can I do this?
<tr>
<td>Ad Catagory</td>
<td><select name="catagory" onChange="window.location='placead.php?catagory='+catagory[selectedIndex].value+'&package='+package.value>
<option value="">Choose One</option>
<option value="boats">Boats</option>
<option value="cars">Cars</option>
<option value="furniture">Furniture</option>
<option value="motorhomes">Motorhome</option>
</select></td>
</tr>
<tr>
<td><label><input type="radio" name="package" value="bplus">
Basic Plus</label></td>
</tr><tr>
<td><label>
<input type="radio" name="package" value="premium">
Premium</label></td></tr>
Hope That came across right.. TIA
Jesse