Skip to content

Instantly share code, notes, and snippets.

@bluehazetech
Created April 6, 2014 15:48
Show Gist options
  • Save bluehazetech/10007854 to your computer and use it in GitHub Desktop.
Save bluehazetech/10007854 to your computer and use it in GitHub Desktop.
JavaScript: Get Selected Option
// Select an option based on index:
$('#selectBox option')[index].attr('selected', 'selected');
// Select an option based on value:
$('#selectBox option[value=value]').attr('selected', 'selected');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment