Quick question that I have not been able to find on the internet. Go figure.
Can you apply the jQuery :eq(index) to a selection menu? I use it for list items but have been unsuccessful at using it for a selection menu. Probably because they aren't an ordered list?
So I've probably answered my own question there.
What could I use in it's place for a selection menu?
I'm indexing the actual line item referenced to know what to load thusly...
$('.tab-content div.tab:eq(' + $('#tab-menu > li').index(this) + ')').slideDown('slow');
Really need to do the same thing with a selection menu but google has not helped me out so far.