Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save msulaimanmisri/c5d86720a92e7e74b785559f0db76501 to your computer and use it in GitHub Desktop.
Save msulaimanmisri/c5d86720a92e7e74b785559f0db76501 to your computer and use it in GitHub Desktop.
jQuery show and hide based on <select>
/**
* @author Muhamad Sulaiman
*/
$("selector").hide();
$(function() {
$("selector").change(function() {
if ($(this).val() == "value") {
$("selector").show();
} else {
$("selector").hide();
$("selector").val('');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment