Advertisement
GamerBhai02

Program 15 Drop Down Box

Dec 6th, 2024 (edited)
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title>Fruit Selection</title>
  5. </head>
  6. <body>
  7.     <h1>Select your fav fruit</h1>
  8.     <label for="fruit-select">Choose here: </label>
  9.     <select id="fruit-select" name="fruits">
  10.         <option value="Amla">Amla</option>
  11.         <option value="Avocado">Avocado</option>
  12.         <option value="Apple">Apple</option>
  13.         <option value="Banana">Banana</option>
  14.     </select>
  15.     <p>You have selected: <strong id="selected-fruit"> </strong></p>
  16.     <script>
  17.         document.getElementById("fruit-select").addEventListener('change', function() {
  18.             document.getElementById("selected-fruit").textContent = this.value;
  19.         });
  20.     </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement