I have this page:http://www.ryancoughlin.com/files/xml/ - if you select User -> Someones name
You will see a table populate. I am trying to only show JUST the results of the user you selected. Since I am actually loading an XML file I cant really send data to it. So I figured, load them all then hide EVERY entry but the one you selected from the dropdown.
Any ideas?
Here is an example of the code I am using to hide: line 145
single_user.find(name_select+":not()").each(function(){$(this).hide();});
The variable name_select is the value of the OPTION tag from the dropdown on the previous screen.
Thanks,
Ryan