The element looks like this:
<li class="blah active"> ... </li>
jQuery.attr('class')
will return both classes.
How can I get only the 1st class ('blah' in this case) with jQuery?
The element looks like this:
<li class="blah active"> ... </li>
jQuery.attr('class')
will return both classes.
How can I get only the 1st class ('blah' in this case) with jQuery?