Hey guys, this is amazing. Thanks for your answers. I implemented the following:
$.ajax({ type: "POST", url: "some.php", data: "name=test", success: function(data){ $("#div").hide("slow"); $("#div").load("some.php #div",function(){ $("#div").show("slow"); }); } }); This works great, but only in FF. IE does not update. Any further ideas to this? Greets