I am using JQuery and what I want to happen is.
Div fades out using the fadeOut command. It then loads content from a url using the load command. Then once content
$("#myDiv").fadeOut(1000, function () { $("#myDiv").load("www.someurl.com", {limit: 25}, function(){ $("#myDiv").fadeIn(); }); });
The limit specifies how long time to wait for an answer in the load call