[jQuery] New way to hover and first-child in IE6

2008-03-07 Thread Micox
Hi people, my first post and i want that you see this new way to hover and first-child in IE6: http://elmicoxcodes.blogspot.com/2008/03/new-way-to-hover-and-first-child-in-ie6.html What you think about this?

[jQuery] Re: animate() canceling

2007-09-03 Thread Micox
I think that we can stop all animations stopping all setIntervals (with clearInterval). function stopAllAnims(){ for(var j=0;j50;j++){clearInterval(j)} } Or like a extension: $.extend({ stopAllAnims: function(){ for(var j=0;j50;j++) { clearInterval(j); }} }); On Sep 2, 10:08