$(document).ready(function(){
$("#home_tab").click(function(){
$("#content").hide();
$("#content").load("php/media_body.php");
$("#content").show("slow");
}
});
I'm using the jQuery Ajax library to pull some HTML content from a PHP file on my server. The above code works beautifully in IE and Firefox but, for the love of me, I cannot get it to work in Chrome. Is there something I'm missing?
Thanks,
-Johnny