Skip to content

Instantly share code, notes, and snippets.

@ghamarian
Created November 5, 2018 17:21
Show Gist options
  • Save ghamarian/300da3eb12798aaab87c2d496e0d0947 to your computer and use it in GitHub Desktop.
Save ghamarian/300da3eb12798aaab87c2d496e0d0947 to your computer and use it in GitHub Desktop.
$('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