I am using ajax to load contents from another page to show in the footer. It work fine in ff, chrome, safari, and opera, but it is not working in Internet Explorer. I do not have much experience in jQuery. Here is my code:
$(document).ready(function(){
$(" #footer #achive-box ,.related-archives .archive-post")
.load("/_blog/Member_Area_Articles/ .show-archive .BlogPostArchive");
$(".show-archive .BlogPostArchive").css("display", "block");
});