if I have an html code like so:
<p class="header hours">
<a href="javascript:void(0)" class="sort" sortcat="hours">
Hours <span class="imgholder" sortcat="hours"> </span>
</a>
</p>
how can I target the span tag within the anchor tag? There are five other similar p tag entries, each with a different value for sortcat=
I've tried a variety of things with no luck.
Thanks
href="javascript:void(0)"I thought we agreed that you don't use this abomination:)– Šime Vidas Jan 19 '11 at 20:30data-. jQuery has great support for HTML5data-*attributes via itsdata()method. – Šime Vidas Jan 19 '11 at 20:34