Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to find out how to retrieve the second class name of a class attribute.

For example, having:

<div class="something fooBar"></div>

How can I get the second class named "fooBar" ?

I know you can add, remove, and check a specific class but I couldn't find documentation how to retrieve a second class into a variable.

share|improve this question
1  
@user why do you want to second class name , if you want to change some css propert's on second class still you can say $('.8') – kobe Nov 21 '10 at 19:47
@gov, I'm using a second class name because I'm retrieving a lot of data and can't use any more attributes. – CyberJunkie Nov 21 '10 at 19:49
@user can you explain it more clear , just i want to learn why do you need all the class names .... // may be i am missing something. – kobe Nov 21 '10 at 19:53
4  
@david , yep , good catch. – kobe Nov 21 '10 at 20:08
show 3 more comments

5 Answers

up vote 35 down vote accepted

You can use split like this:

alert($('#divID').attr('class').split(' ')[1]);

To get all classes, you can do this instead:

var classes = $('#divID').attr('class').split(' ');

for(var i=0; i<classes.length; i++){
  alert(classes[i]);
}

More Info:

share|improve this answer
+1; same as my answer but 15 seconds earlier. – Matt Ball Nov 21 '10 at 19:50
5  
@matt , its really surprise for my how people come with solutions so fast and even complete typing the code also , people are simply brilliant in this stack overflow. I am not at at all getting stuck anywhere in my development after creating a login in stackoverflow , i gained so much knowledge in last 2 months. – kobe Nov 21 '10 at 19:55
I moved to UI development just few months back , I used to code a lot in backend and middle tier, This site made my UI work really easy. I would have joined earler , but no problem. – kobe Nov 21 '10 at 19:59
Thanks this works perfectly :) – CyberJunkie Nov 21 '10 at 20:15
@user468312: Welcome :) – Sarfraz Nov 21 '10 at 20:15

This is how you would do it by referencing a div ID

$(document).ready( function () {
  alert($('#yourDivID').attr('class').split(' ')[1]);
});

The split function will allow you to split a string with the specified delimiter. This will return an array of your separated values. In this case will return an array of classnames.

Reference for split an other string methods http://www.javascriptkit.com/javatutors/string4.shtml

You should look into the following jQuery Selectors and Functions for accessing classes

Selectors

http://api.jquery.com/class-selector/ select a dom element with the specified class

http://api.jquery.com/has-selector/ select a dom element that has the specified selector

Functions

http://api.jquery.com/addClass/ method to add a class to a jQuery object

http://api.jquery.com/removeClass/ method to remove a class to a jQuery object

http://api.jquery.com/toggleClass/ method to toggle a class to a jQuery object

http://api.jquery.com/hasClass/ method to check if a jQuery object has the specified class

http://api.jquery.com/attr/ method to retreive attributes of a jQuery object

Edited: Nice cheat sheetalt text

share|improve this answer
Thank you for the references! +1 – CyberJunkie Nov 21 '10 at 20:11
aah requires 15 reputation, sorry, will try again when acquired :) – CyberJunkie Nov 21 '10 at 20:12
@user468312...your welcome for the references. here is a nice cheat sheet you can keep near your computer labs.impulsestudios.ca/downloads/… – John Hartsock Nov 21 '10 at 20:14
Awesome thanks! I printed it immediately :) – CyberJunkie Nov 21 '10 at 20:20
// alerts "8"
alert($('<div class="something 8"></div>').attr('class').split(' ')[1]);
share|improve this answer
1  
+1 for correct answer too though yes i was 15 seconds before :) – Sarfraz Nov 21 '10 at 20:06

You can get the value of the class attribute and split it on space.

secondClass = element.className.split(' ')[1];
share|improve this answer

as an alternative, it's always better practice to use the data-* html attributes to keep track of states, e.g $("div.example").data("active")

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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