Skip to content

Instantly share code, notes, and snippets.

@MayogaX
Created January 9, 2014 17:25
Show Gist options
  • Save MayogaX/8338166 to your computer and use it in GitHub Desktop.
Save MayogaX/8338166 to your computer and use it in GitHub Desktop.
$(".tabform").change(function () {
$(".divtabform").hide();
$("select option:selected").each(function () {
var selected = $(this).data("div");
$("div").find("[data-div='" + selected + "']").show();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment