I am fetching some content from another page using jQuery .get() like this –
$.get("http://www.somesite.co.uk/generalsite/PopDownMenu", function (htmlContent) {
$("#masternav").html(htmlContent);
});
This script works fine in all browser except IE.
Is it my script or the page I am fetching from?
You seem to be violating the same origin policy. You cannot send cross domain AJAX requests. So unless your site is hosted on
http://www.watchfinder.co.uk/you cannot send AJAX requests to this domain for security reasons. You may take a look at the following article for possible workarounds.