If you login to Facebook, Twitter or Gmail and view source, you'll notice something very peculiar. All your Tweets and mail are rendered as JSON. There are no angle brackets. My guess is, this data is all dynamically rendered to the DOM. If you inspect any element on the page, you'll see tons of divs and other HTML elements. None of which was served in the original markup. The questions are:
- Why would these 3 huge sites take time out to do this?
- Wouldn't it be faster to just use HTML?
- Is it to save on bandwidth since the JSON payload is smaller to serve than HTML?
- Is it because these sites are heavily based on AJAX? My guess would be the former, but I have no idea. I'm not sure if you have to work for Google Twitter, or Facebook to know why this is, but this tactic is shared between the 3 sites, so I figure they have a common goal in mind. That makes me think it's more of a general thing.