Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <html>
  2. <body>
  3. <select id="test" onkeypress="sayHello()">
  4. <option value="1">1234</option>
  5. <option value="5">5678</option>
  6. </select>
  7. </body>
  8.  
  9. <script>
  10. function sayHello(){
  11. alert("Hello");
  12. }
  13. </script>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement