Reputation: 11635
How much elements can I keep in the "detached" state in the DOM ? Is there any limit?
Upvotes: 0
Views: 72
Reputation: 1072
Different browsers have certain limitations depending on what you're doing (like very large getImageData
and putImageData
you may run into problems). But generally there is no limit.
Upvotes: 1
Reputation:
There is no limit; A javascript program can use up all your RAM without being stopped.
Upvotes: 1