This is what I have. The li has a class of current but for some reason it's not adding the class.
if (jQuery("#sidebar li").hasClass("current")) {
jQuery(this).addClass("booyah");
}
|
This is what I have. The li has a class of current but for some reason it's not adding the class.
|
|||
|
The true and easy way: |
|||
|
this pointer is not referencing the $("#sidebar li") element.
|
|||
|
|
|
Try var'ing the side bar el first. I don't think "this" is what you think it is.
|
|||
|
|
|
Dont use
|
|||
|
|
|
Here you go:
|
|||
|
|
|
You can also try this: http://jsfiddle.net/shaneburgess/STZUb/
|
|||
|
|
this(I may be wrong)thisis only scoped inside of a) object method calls - to the object b) event handlers - to the caller @Julian's answer is the way to go, though there's even a simpler way (see my answer) – Guard Jul 25 '11 at 19:36