Advertisement
alex1984vn

Choose item in combo box

Aug 28th, 2011
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for( var i = document.getElementById('ddlCountry').options.length-1;i>=0; i-- )
  2. {
  3. if(document.getElementById('ddlCountry').options[i].value==document.getElementById('txtCountryISO').value)
  4. {
  5. document.getElementById('ddlCountry').selectedIndex=i;
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement