Hi all
I'm rather new to Jquery and have a quick question.
I have two Jquery functions which both seems to start onload but I want to delay the one function until Function 1 has completed :
$(document).ready(function() {
//DO SOME AJAX STUFF HERE AND CALL FUNCTION TWO BELOW WHEN DONE
});
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
itemLoadCallback: { onBeforeAnimation: mycarousel_itemLoadCallback }
});
});
Thanks.