javascript - Content loaded through JS not loading in IE9 unless the console is open -



javascript - Content loaded through JS not loading in IE9 unless the console is open -

ok, have never seen before. have site loading in content using javascript. works in chrome, opera, firefox, safari , ie 10. place not work ie9. fine except load in ie9 if console open or if open console while on page.

does have thoughts issue? have included code bellow.

if($("#event-container").doesexist()){ var prop = jquery('#prop').val(); var num = jquery('#num').val(); var current = jquery('#current').val(); var url = "/example/eventspull?prop="+prop+"&num="+num+"&current="+current; console.log(url); $.get("https://example.com" + url, function(data) { console.log(data); info = $.parsejson(data); if (data.length > 0) { $("#event-container").append(data); } }); }

javascript ajax internet-explorer

Comments

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -