Sorry if this is extremely obvious, but I have looked and looked for a solution but haven\'t found anything. I\'m very new to jQuery, so even looking for what I want to do h
If you have a select box, i.e.
....
you can bind to .change(), i.e.
.change()
$('.myselect').change(function() { --> do show hide here. });
Look up jquery .show() and .hide(). (http://api.jquery.com/show and http://api.jquery.com/hide).
.show()
.hide()