Hi there,
Any idea why this is happening?
Code:
We're using HTML 3.6 (with IE7) and everytime we load up the package we get a prompt along the lines of "This page is accessing information that is not under its control. This poses a security risk. Do you want to continue?". While the page does load as normal if you click "yes", this really isn't a good look. The offending line of code is a jQuery driven GET request for an xml file within the package;
It’s worth noting that the message doesn’t come up when we run the page outside of htmlexe using IE7. For the URL parameter I’ve tried an absolute path (http://heserver:8080/productmanifest.xml) but this didn’t make any difference.$(document).ready(function(){
$.ajax({
Code:type: "GET", url: "productmanifest.xml", dataType: "xml", success: function(xml) { //success code here } }); });
Any idea why this is happening?
Last edited: