jquery help
jquery help
Out of context: Reply #1
- Started
- Last post
- 8 Responses
- neverblink0
I'm not entirly sure what you're trying to do.. but something like this?
$(a ^.active).hover( function(){
$this.animate({
backgroundColor: "#F09",
color: "#FFF"
}, 500);
});(not tested)
- use ^ to excludeneverblink
- illl have a test and get back to you.... never knew about ^Stugoo
- ahh.. got things mixed up..
use .not(subselector)neverblink - i'm no progger but maybe $('a.active').hover...
//do magic
})
?
since a.active is already filtering the active from the non active?caoimh - ooops...thats not right...hows about - $('a').not([a.active...caoimh