I've inherited a site that uses the jQuery Quicksand plugin for data filtering.
I'm having some issues in IE10. The transition animations don't seem to be firing. The sort happens immediately. Also, the callback function that should fire after the sort completes is not firing. All is good in < IE10 and all other browsers that I've tested on.
There are no errors in the console or any indication as to what is failing.
Has anyone found the source of the issue?
function testFunction(){
alert('test');
}
$('.button').click(function(e) {
$('.all').quicksand( $('.warm li'), {
duration: 1000,
attribute: 'id',
adjustHeight:false
},function(){
testFunction();
});
});