I was able to get this to work:

function getContent(){
        $("#content").fadeOut(1200,function(){
                showContent();
        });
}
function showContent(){
  $("#content").load("EX_myNewAjax.html").fadeIn(1200);
}

wondering if there is a more concise way to write it
-john-

Reply via email to