[jQuery] Re: Move an image/element?

2007-07-13 Thread CommanderZ
try $("#ImgContainer > img").animate({ left: 50 }, 1000);

[jQuery] Blocking event

2007-07-13 Thread CommanderZ
Hello, I have an element with one event binded specifically on it and several other global click events. The specific one is triggered first and I want to block others from this one. Is here any way how to prevent them from occuring?

[jQuery] Removing an element drom children group

2007-07-12 Thread CommanderZ
Hello, I want to hide all table's rows except the first one. I made this: $("#table").children().not("tr:first").hide(); And it doesn't hide anything. Thanks for help