-
Show/Hide div
I need a script that will use a actual button to activate the function to show/hide all the divs expect one that will be selected by users via radio button. Below is a very basic layout. I want it so when the MX-880 is selected and you click to hide the options you would only see the MX-880 but if you clicked to show the options and then you select the MX-3000 and then clicked to hide the options you would only see the MX-3000. I only want it to hide the options when the user selects the button to show/hide them.
Code:
<form id="config" method="post">
<fieldset><legend>Control</legend>
<input type="button" value="Show/Hide options" />
<label><input name="remote" type="radio" value="0" checked>MX-880</label>
<label><input name="remote" type="radio" value="100">MX-980</label>
<label><input name="remote" type="radio" value="500">MX-3000</label>
</fieldset>
</form>
-