I would like to know how the browser executes / processes the request. I would like to know this because knowing how it works will help me understand how you can improve web programming that meets performance goals using browser features.
How do browsers load CSS, JS, and image files?
Does it load one resource at a time or several?
How many concurrent requests (connections) can it make?
What happens if the request is executed on the server and the user clicks the stop button? Will the execution be completed and the response will be returned? Or is the request halted on the server server?
How is JS execution performed by the browser?
Please add useful links / information if possible. Thanks everyone
source
share