Last active
August 28, 2017 15:28
-
-
Save philchanet/ae47a7a2af6a26cf6179ef4eedef6687 to your computer and use it in GitHub Desktop.
Open modal upon selection of an option in a select
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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