Skip to content

Instantly share code, notes, and snippets.

@philchanet
Last active August 28, 2017 15:28
Show Gist options
  • Save philchanet/ae47a7a2af6a26cf6179ef4eedef6687 to your computer and use it in GitHub Desktop.
Save philchanet/ae47a7a2af6a26cf6179ef4eedef6687 to your computer and use it in GitHub Desktop.
Open modal upon selection of an option in a select
$('select').change(function () {
if ($(this).val() == "thevalue") {
$('#themodal').modal('show');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment