Ok, I suspect there will be dozens of these on my page so I am trying to build a single function to handle them properly without having to recycle code over and over and changing the IDs or class names of elements just to make this work.
My HTML looks like:
<div class="button_select">
<ul class="button_select_toggle">
<li>
<div class="button_select_text">Menu Text</div><div class="button_select_arrow">V</div>
</li>
</ul>
<ul class="button_select_sub" rel="hidden">
<li>Text</li>
<li>Text</li>
<li>Text</li>
<li>Text</li>
</ul>
</div>
And what I am trying to do currently is get specifically the UL with the class button_select_sub so I can get its rel value. Which yes to some extent this would be easy if this was going to be the only one on any given page, however this is going to be on any given page who knows how many times. Hence me trying to make the universal function for handling them. Anyway my last failed attempt was:
var selectstatus = $(this).siblings('.button_select_sub').attr('rel');
alert('status: '+selectstatus);
but in the alert I am getting "status: undefined" maybe im not using siblings correctly? maybe theres an alternative option. Also worth mentioning is button_select_sub might not always be the last UL in the div so I can't do :last either.
ive also tried, children().find().. and a couple others, I know its possible I just can't chain it together right.
$(this)referencing? Can you post the whole js code? – elclanrs Feb 4 '12 at 4:03