I have the strange flash of the content after finishing sliding up. i have add the:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
to the head of my code but then the entire page is jumping the the slidedown occur
what is my solution?
here is my code just in case:
$("#contentbottom").slideUp(500, function() {
var dataString = 'type='+t;
$.ajax({
type: "POST",
url: link,
data: dataString,
success: function(msg)
{
$("#contentbottom").empty().append(msg);
},
error: function (XMLHttpRequest, textStatus, errorThrown)
{
alert('error: unable to load the additonal info');
},
complete: function()
{
$("#contentbottom").slideDown(500);
}
});
});