Programmer Question
I am having problems using multiple queues in jQuery. Consider the following example:
$('#example').click(function() {
$(this).delay(1000, 'fx2').queue('fx2', function() {
alert('here');
});
});
The alert never fires. Why?
Find the answer here
No comments:
Post a Comment