i have li that has class name more then one ,

so i want to get first class name

  For Example

<li class="class1 smfont">1<li>
<li class="class2 smfont">2<li>
<li class="class3 smfont">3<li>
<li class="class5 smfont">5<li>

i want to get the class name only class1, class2, class3.... by jquery

i use

var $filteredData = $data.find('li[class=' + $filterType + ']');

but not work

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

An easy way to do it is:

var firstClass = $("li").attr("class").split(" ")[0];

.attr("class") gets the class names as a space-separated string, so the next step is to split that based on the spaces and just select the first element in the resulting array. You might want to trim it before splitting first if you don't control the HTML you're working with.

You can see a working example at http://jsfiddle.net/wXuFt/

link|improve this answer
1  
Just for fun jsperf.com/split-or-match. – elclanrs Feb 25 at 6:54
Haha, trying that split is faster for me in FF and match is faster in Chrome. Good job Chrome I guess, I wouldn't have thought regex could be quicker. – mikel Feb 25 at 7:20
feedback

You can do this too http://jsfiddle.net/elclanrs/wXuFt/3/

var classOne = $('li').attr('class').match(/\w+/);
link|improve this answer
This is not just shorter. It's also more robust. Consider the case where class=" foo bar". mikel's answer does not extract 'foo'. – Jørgen Fogh Feb 25 at 6:54
True, though it would if you trim first as I suggested. Split is marginally faster than regex too, though it's not going to make any noticeable difference. +1 from me for the elegance of it though :) – mikel Feb 25 at 6:58
@mikel: Sorry. I hadn't seen that. – Jørgen Fogh Feb 25 at 7:02
feedback

A more robust version of eclanrs' answer:

var firstClass = ($("li").attr("class") || '').match(/\w+/) || '';

It handles the case where class isn't set and the variable name starts with a character, as it's supposed to. If there is no first class name, the variable will be set to the empty string. You may want to set it to null instead.

link|improve this answer
The variable is null if class="" so var classOne = $("li").attr("class").match(/\w+/) || 'Whatever'; --> jsfiddle.net/elclanrs/wXuFt/5 – elclanrs Feb 25 at 7:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.