Javascript examples for jQuery:Selector
Set the selected field of combo box within the view
<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>