Reputation: 149
Starting using Angular, and noticing with the full DOM parsing that it does that it seems to be slow when included on a large page. This issue seems to be very relevant with IE, while not so much with FF or Chrome.
Has anyone found a way to:
Is there anyway to have angular only parse a sub section of the DOM specified via tags?
Upvotes: 1
Views: 1167
Reputation: 43023
Include less in the DOM at once :-)
Try paginating your super long lists, or split the UI you're displaying into multiple pages.
Also you could try bindonce
https://github.com/Pasvaz/bindonce if you have a list of data that's static after being rendered.
Upvotes: 3