Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Combobox</title>
  5.  
  6.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  7.     <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
  8.    
  9.     <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
  10.  
  11.     <script type="text/javascript">
  12.        
  13.         $(function(){
  14.  
  15.             // Why won't this work?
  16.             $("#select").mouseover(function(){
  17.                 console.log("hello");
  18.             });
  19.            
  20.         });
  21.  
  22.     </script>
  23.  
  24. </head>
  25. <body>
  26.  
  27.     <select id="select">
  28.         <option>Dabo</option>
  29.         <option>Sabo</option>
  30.     </select>
  31.  
  32.     <input type="date" name="hmm">
  33.    
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement