Skip to content

Instantly share code, notes, and snippets.

@ghamarian
Created November 5, 2018 17:20
Show Gist options
  • Select an option

  • Save ghamarian/d1001c18ba4e45f139cb28cd2574d437 to your computer and use it in GitHub Desktop.

Select an option

Save ghamarian/d1001c18ba4e45f139cb28cd2574d437 to your computer and use it in GitHub Desktop.
select and jquery
$('select').on('change', function () {
$(this).find('option').attr('selected', false);
$(this).find('option[value=' + $(this).val() + ']').attr('selected', true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment