You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.
Suggestion: keep all the lists outside the DOM, stashing them with a tempArray.push(), and then iterating tempArray calling .listview() (L235) for each, and THEN pass the whole tempArray to appendTo() once, outside the $.each() loop.
Speedier :-) One DOM insertion instead of many, and all manipulations are outside the DOM.
The text was updated successfully, but these errors were encountered:
See the .appendTo() statement here:
https://github.com/jquery/jquery-mobile/blob/master/js/jquery.mobile.listview.js#L229
Suggestion: keep all the lists outside the DOM, stashing them with a tempArray.push(), and then iterating tempArray calling .listview() (L235) for each, and THEN pass the whole tempArray to appendTo() once, outside the $.each() loop.
Speedier :-) One DOM insertion instead of many, and all manipulations are outside the DOM.
The text was updated successfully, but these errors were encountered: