The Code-
$.ajax({
url: "edit.php",
success: function(html)
{
$("#last").html(html).hide().slideDown('slow');
alert("hello");
}
});
Mozilla shows it all fine. Where as IE (being the normal PMS *) doesn't load anything into #last but does show the alert, what could be the problem?
I thought javascript was browser independent?