vote up 2 vote down star
1

I am trying to change the class of a element with Javascript using the below code:

parent.document.getElementById('<?php echo $markid ?>').class = 'unlistened';

Not having much luck though. How do I do this properly?

flag

78% accept rate

5 Answers

vote up 8 vote down check

.className rather than .class

link|flag
d'oh! beat me to it by 20 seconds :p – peirix Jul 9 at 13:07
beat me too ... – edeverett Jul 9 at 13:08
YES. Thanks so much. – ian Jul 9 at 13:14
vote up 4 vote down

className should do the trick (:

link|flag
vote up 5 vote down

Use .className instead of .class

Class is a reserved word in JS so it's changed to className. A few other HTML attributes are changed in a similar way. "for" changes to "htmlFor" for instance.

link|flag
vote up -2 vote down

Use jQuery...

$("tagname").addclass("unlistened");

http://docs.jquery.com/Attributes/addClass

link|flag
vote up 0 vote down

Just a tip, it's much easier to use jQuery if you're doing JavaScript these days, since it's so much easier and only really requires you to have good CSS knowledge (for selectors and so on)

You'd do $(selector).addClass('myclass');

And retrive it like so:

$(selector).attr('class');

Oh yes, and please note if you're using a mixture of classes on any element, the above function will return them all delimited by a space (like you'd define in the HTML class attribute.) If you want to check if a particular class exists, do this:

$(selector).hasClass('class');

That's the basics of class manipulation with jQuery. Check out http://docs.jquery.com/ for the rest.

link|flag
I'm not sure why people are downvoting my answer. It's a helpful and friendly suggestion... – Will Morgan Jul 10 at 14:54
i didnt downvote but i would imagine because there was no mention of looking for a solution in jQuery, rather just pure JS. – Darko Z Jul 13 at 0:24

Your Answer

Get an OpenID
or

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