-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slow performance #45
Comments
Thanks @nexus061 |
I use query-1.11.2.js and IExplorer 11, to refresh one zone with large data (table scrollable with 8000 elements) Iexplorer run for 90577 millis This workaround does not apply the scripts included in the zone |
The problem is in the function .html(), jquery run controls
very slow controls... the flow not enter in the body of if. and run this if ( elem ) { i have replaced $("#" + id).html($(zoneNode).text()); with $("#" + id).empty().append($(zoneNode).text()); and work (less rapid than innerHtml) 2000 millis 👍 |
Hello,
AjaxAnywhere.processXmlResponse function is too slow in iexplorer (edge mode)
with large dataset
i have changed
$("#" + id).html($(zoneNode).text());
with
var text=$(zoneNode).text();
var div = document.getElementById(id);
div.innerHTML = text;
more faster, even if i have problems with links ajax
The text was updated successfully, but these errors were encountered: