My current task involves utilizing ajax to fetch data from a different page and display it in the footer section. While this setup functions seamlessly in popular browsers like Firefox, Chrome, Safari, and Opera, I am encountering issues with Internet Explorer. My expertise in jQuery is limited, so I am seeking advice on how to resolve this matter. Below, you will find my existing 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");
});