# Situation
- We have three files - page.html, sidebard.html, main.html
## page.html
- Head only has jQuery
- Body has three divs with id timestamp, sidebar and main.
## main.html content
```
This is main
```
## sidebar.html content
```
This is sidebar
```
# Assignment
## Calculate time for both requests to complete when goes concurrenctly
- Save the T - where T is document.ready timestamp in milliseconds.
- Load main.html and sidebar.html using ajax. It should not be one by one - request should go concurrently
- Note the T+X when both the requests are complete. Display X inside div with id timestamp
Example Support these two requests were started at T and ended at T+200ms then display 200ms once both the requests are completed