I'm trying to have an option 'popup' more option when click on. I am new to javascript, CSS and HTML, so I apologize before hand for the code error
so I have used onclick option on javascript but it doesn't work, I don't know what am I doing wrong. "panelIss" is a href to another htm file that would bring the other options.
<form action="/action_page.php">
<fieldset>
<legend>Equipment Status</legend>
Select Equipment:
<select>
<option value=none>-Select from list-</option>
<option
value="panel"
onclick="document.getElementById('panelIss').innerHTML"
>
Panel
</option>
<option value="doorWindsens">Door/Window sensor</option>
<option value="camera">Camera</option>
<option value="doorbell">Door Bell Camera</option>
</select>
</fieldset>
</form>
Ideally what I want is as soon as you click "Panel" more option would be listed underneath it.