At what point in the render process of a web page can we interact with that page
- by Bamerza
I'd like to measure to distinct user experience points during the rendering of an HTML page:
1) Point which user sees the first painting of the page
2) Point at which user can interact with the page - meaning sees 75% of it or can actually register a button click or link click
I am pretty certain these UX interactions can start before the HTML code is fully rendered, so would that instance be the JS func "OnLoad" or some other distinct measureable value/function?
If it helps, we can even narrow the answer down to webkit based browsers.