Its only my 2nd day using this so im sorry if theres an obvious error here. Im trying to have 3 functions execute one after the other on load event, but the 3rd callback function cancels out the 2nd. Are you allowed 3? If no whats the way around it.
$j(window).ready(function() {
$j("#content").animate({
marginLeft: parseInt($j("#content").css('marginLeft'),10) == 0 ?
$j("#content").outerWidth() : 0
},function(){
$j(".headerImg").slideToggle(900);
},function(){
$j(".headerTitleImg").slideDown(100);}
);
});
Thank You.