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+"¤t="+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
Post a Comment