[jQuery] nooby question
[jQuery] nooby question
Hi All,
I want to change the border color of a div to white and at the same
time change text inside to white.
So Im doing something like this:
$("#frame div").hover( function(){
$
(this).css({borderColor:"#ffffff"}).filter("h5").css({color:"#fff"});
}, function() {
// another function
});
Also going to add
this: .end().filter("img").css({borderColor:"#fff"}); // not
working too
Can anyone help?