Hello,
I have a link;
<a href="javascript:{}" onclick="DoSomething(this)">click me</a>
And what i'd like to do is use the "this" object to manipulate the css
of its parent;
function DoSomething(obj) {
if(obj) {
$(obj).parent.addClass("newstyle");
//i can do this with javascript, but i dont want to write
styles into my js
//obj.parentNode.style.backgroundColor = '#FFFFEE';
}
}
Does anyone know how to do this with jquery?

