Hello everyone I’m trying to do when a user select one of option , user can see a text.
For example : If user select Mercedes user can see text like “Mercedes is the best German car”
<body>
<select>
<option>Volvo</option>
<option selected="selected">Saab</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
</body>
This will alert the selected text. Try this:
Hope this helps.