Set the selected field of combo box within the view - Javascript jQuery

Javascript examples for jQuery:Selector

Description

Set the selected field of combo box within the view

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.3.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*from   w  ww .ja v  a  2 s.c o  m*/
    });

      </script> 
   </head> 
   <body> 
      <select id="selLang"> 
         <option value="en">english</option> 
         <option value="fr" selected>french</option> 
      </select>  
   </body>
</html>

Related Tutorials