Would it be possible to force a webbrowser reducing render quality to increase speed? I want to show big html-structures (document.getElementsByTagName("*").length
returns 661844 elements).
At the moment the website needs about 2.8s to load the content (~13MB but gzip compressed), but the DOMContentLoaded event is triggered about 46s after start - this is far to long. Between pressing the "start button" and the DOMContentLoaded event the browser doesn't respond and therefore I want to reduce the time.
any suggestions?