[jQuery] Re: How to abort fadein/out processing?

2009-06-22 Thread adamscybot
Just a quick update. I found a better solution. This works 100%: $(document).ready(function() { $('.navbutton').not("#active").siblings(".rollover").css({ opacity:0, display:'block' }); $(".navbutton").not("#active").hover(function(){ $(this).siblings(".rollover"

[jQuery] Re: How to abort fadein/out processing?

2009-06-22 Thread adamscybot
I used the slightly better: http://blog.threedubmedia.com/2008/08/eventspecialhover.html Works well. Thanks, Adam

[jQuery] Re: How to abort fadein/out processing?

2009-06-22 Thread adamscybot
Very interesting. Will post back with results.

[jQuery] Re: How to abort fadein/out processing?

2009-06-22 Thread adamscybot
This doesnt work at all, even without the stop(). Nav bar is unresponsive.

[jQuery] Re: How to abort fadein/out processing?

2009-06-22 Thread adamscybot
I tried this but it had no affect. I also tried stop() after siblings(".rollover"). which appears to work but permanently breaks the nav bar if you move your mouse over it quickly.

[jQuery] How to abort fadein/out processing?

2009-06-22 Thread adamscybot
Hi, This is my first time using jquery and Ive designed a small and simple fadein/out script that acts as a rollover on this navigation bar: http://relentless-servers.co.uk/Relentless%20Servers%20v3/ Here is the code: $(document).ready(function() { $(".navbutton").not("#active").hover(