Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <html>
  2. <select id="sel" onchange='myFunction()'>
  3. <option value="car">1</option>
  4. <option value="bike">2</option>
  5. <option value="cycle">3</option>
  6. </select>
  7.  
  8. <button onclick='selectChange()'>Click me</button>
  9.  
  10. <p id="demo"></p>
  11.  
  12. <script>
  13. function myFunction() {
  14. document.getElementById("demo").innerHTML = "Hello World";
  15. }
  16.  
  17. function selectChange(){
  18. document.getElementById('sel').value = "bike";
  19. }
  20. </script>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement