I\'m using isotope ( http://isotope.metafizzy.co ) with expandable items, and i would like to use ScrollTo so that i can automatically scroll to the newly expanded item..>
The callback for the Isotope reLayout fires too soon indeed.
I used bind to detect when the animation ended.
It works works for both the jquery and css animation engine.
$("#isotope").bind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd", function(){
});
ps: this has to be placed after the regular isotope code of course.
Greetings, Manuel