Here is the current HTML code I have for adjusting the zoom level on a page.
I am looking for guidance on how to use JavaScript to hide the 200 zoom option based on a certain condition.
To clarify, if one variable exceeds another variable, I want to hide the 200 option and show the options for 100, 300, and 400 instead.
<div id="zoomAdjuster' class="centerAlign">
<span>Zoom</span>
<select name="chooseAZoom">
<option value="100" selected>100</option>
<option value="200">200</option>
<option value="300">300</option>
<option value="400">400</option>
</select>
</div>
I would appreciate any help or advice as I am not very familiar with this language. Thank you.