HI I am getting this peculiar information in my console of IE 11 ,
An error has occurred in the JavaScript Console. Functionality might be affected.
this information is showed when I run a for loop to form the list of elements in ul tag for 4000 times, I put the i in console but it stops at 999 and this message is shown below.
for (var i = 0; i < 4000; i++) {
console.log(i)
param_html="'"+element_list[i]["sElement"]["#text"].replace('/', '')
+ "','" + element_list[i]["sElementDesc"]["#text"].replace('/', '')+"'";
html += "<li class='ui-widget-content addElementandlocation image-" + element_list[i]["iInciLocFlag"]["#text"].replace('/', '') + " onclick=dao.load_location_element_loca(" + param_html + "); module='location2' id='" + element_list[i]["sElement"]["#text"] + "'><span class=code>" + element_list[i]["sElement"]["#text"] + "</span><span class=description>" + element_list[i]["sElementDesc"]["#text"].replace('/', '') + "</span></li>";
}
I dont know why its not running more than 999. Thank you.