Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Fruit Selection</title>
- </head>
- <body>
- <h1>Select your fav fruit</h1>
- <label for="fruit-select">Choose here: </label>
- <select id="fruit-select" name="fruits">
- <option value="Amla">Amla</option>
- <option value="Avocado">Avocado</option>
- <option value="Apple">Apple</option>
- <option value="Banana">Banana</option>
- </select>
- <p>You have selected: <strong id="selected-fruit"> </strong></p>
- <script>
- document.getElementById("fruit-select").addEventListener('change', function() {
- document.getElementById("selected-fruit").textContent = this.value;
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement