Blank HTML SELECT to select nothing in dropdown list - Javascript jQuery

Javascript examples for jQuery:Selector

Description

Blank HTML SELECT to select nothing in dropdown list

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.6.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){//  ww  w.  jav a  2 s .c om
$('#a').prop('selectedIndex', -1)
    });

      </script> 
   </head> 
   <body> 
      <select id="a"> 
         <option>1 </option>
         <option>2 </option>
      </select>  
   </body>
</html>

Related Tutorials