After a month of search, I needed really bad for my www.fav20.com project. So I want to share it with you.
var stopsort = function(e){ e.stop(); }
var startsort = function(){ this.removeEvent(’click’,stopsort); }
.....
onStart:function(el){
el.getElements(’a').each(function(atag){
atag.addEvent(’click’,stopsort);
});
},
onComplete:function(el){
el.getElements(’a').each(function(atag){
startsort.delay(50,atag);
});
}
......
The ideea is the 50 miliseconds delay on the function.
