Why MS IE do ignore AJAX request when loading
Hi there,
When i use IE version 11.0.9600.17691is to open AEM, but find it ignore page ajax request. please see following details:
1) Add a new featurn under :/libs/cq/core/content/welcome/features/myNewFeature
2)Set target value /content/globalsight/myTestPage for property sling:target
3)And in the app page myTestPage defines a ajax :
<script type="text/javascript"> $(document).ready(function() { var ipAddress; $.ajax({ type: 'GET', url:'/bin/connector', success: function(msg){ // var json = jQuery.parseJSON(msg); var json = msg; var hostName = json.HostName; var hostPort = json.HostPort; var username = json.UserName; var pwd = json.Password; var enableHttps = json.EnableHttps; var desc = json.Desc; ipAddress = json.ipAddress; $("#hostName").val(hostName); $("#hostPort").val(hostPort); $("#username").val(username); $("#password").val(pwd); $("#description").val(desc); var count = $("#enableHttps").get(0).options.length; for(var i=0;i<count;i++) { if($("#enableHttps").get(0).options[i].text == enableHttps) { $("#enableHttps").get(0).options[i].selected = true; break; } } } });The problem is when i press the link at welcome page , the page myTestPage never run that ajax if use MS IE, but the other IE like firefox, chrome work it and run that ajax when load the page.
It make me confused. Anyone know how to resolve it?Thanks a lot
Best regards,
Brian