Detecting when Javascript is performing poorly
Posted
by what-the-crap
on Stack Overflow
See other posts from Stack Overflow
or by what-the-crap
Published on 2010-03-19T07:57:04Z
Indexed on
2010/03/19
8:01 UTC
Read the original article
Hit count: 115
I'm working on a webapp in jquery that, on older machines or machines without much resources, may perform poorly. To get around this I'd like to make a degraded version that disables some of the features, particularly those that rely on large images.
How can I tell if my app is running poorly on the user's computer in jquery or javascript in general? I just need a way to call a function that will degrade the app. (especially when the user may run low on system memory)
The only way I can think of is for manual user intervention, but the option would add clutter for users that don't need it and users that do need it may not notice it.
Thanks!
© Stack Overflow or respective owner