[jQuery] Re: Newbie needs Help with jquery logic

2009-03-01 Thread Sean O
This was a fun one to play with. I think this is the effect you're after... Demo: http://jsbin.com/iwile Source: http://jsbin.com/iwile/edit It's pretty concise self-explanatory, but if you have any questions, just reply. SEAN O http://www.sean-o.com http://twitter.com/seanodotcom

[jQuery] Re: Newbie needs Help with jquery logic

2009-03-01 Thread ricardobeat
Not sure what this is an answer too (appear as a new subject), but: $(img:not(this)) You have 'this' as a string in there. That's saying give me all images which are not a 'this' element. Should be this: $(img).not(this) //passing the actual DOM element to not() I prefer to code it this way: