0

I'm a web developer, I just want to know how things work behind the scenes when a request is fired.

Suppose let's assume I've a static website, I requested about us page in one tab, contact us in other tab, both the requests are fired at the same time..

when the requests are fired at the same time, How browser displays the content in respective tabs correctly ?

Thanks in advance..

Anil kumar
  • 4,107
  • 1
  • 21
  • 36

1 Answers1

1

I think you are looking for process id,

In browser each tab have different process id ( you can see that is task manager )

This seperates the send and receiving of the data in each tab...

vaku
  • 697
  • 8
  • 17
  • Are there any relevant links, explaining how it works ? – Anil kumar Apr 01 '19 at 07:46
  • try this [Quora Answer](https://www.quora.com/When-we-open-a-new-tab-in-a-browser-does-it-create-a-new-process-thread-and-why-Which-is-better-and-why) – vaku Apr 02 '19 at 14:58