I would like to know how to show/hide different forms based one form\'s selection.
In the sample code below all three forms are automatically set to display:none. I woul
Form 1 Form 2 Form 3
JS:
$("select").on("change", function() { $("#" + $(this).val()).show().siblings().hide(); });
Sample at http://jsfiddle.net/dfYAs/