I have two select lists. Both are populated using php and mysql. When the user clicks on an organization in the first list, only events for that organization should show in the events list. The organization id is the value of the options in the organization list and the class for the options in the event list.
When I choose organization 3, two events (A and B) should show in the event list. Instead, all the event options disappear! Something must be wrong with my selector for the second menu but I'm too new to jQuery to figure it out!
jQuery
$(document).ready(function() {
$("#pick_org").change(function() {
var org = $(this).val();
$("#pick_event option").hide();
$('#pick_event option .org-'+org).show();
});
});
HTML Form
<form action="post" method="">
<label for="pick_org">1. Pick Organization</label>
<select name="pick_org" id="pick_org">
<option value="1">Org 1</option>
<option value="2">Org 2</option>
<option value="3">Org 3</option>
<option value="4">Org 4</option>
<option value="5">Org 5</option>
</select>
<label for="pick_event">2. Select Event</label>
<select name="pick_event" id="pick_event">
<option value="A" class="org-3">Event A</option>
<option value="B" class="org-3">Event B</option>
<option value="C" class="org-5">Event C</option>
<option value="D" class="org-1">Event D</option>
</select>
</form>
CSS #pick_org option, #pick_event option{display:block;}
I'm loading both lists using php because my target audience doesn't always have JavaScript turned on. ;-(