How does GMail display the sidebar?
2 answers
Gmail's interface uses JavaScript to dynamically load large amounts of content. This explains why you can't see "Write Mail".
If you want to see what the final HTML document looks like, here's my method:
Install Firefox extension "Web Developer" Click "Tools"> "Web Developer"> "View Source"> "View Generated Source"
+4
a source to share
All Javascript. You can get this information yourself here: if you are not already using Firefox, download it and then install the Firebug extension.Among other features, it will allow you to click on any component of the page and show you the corresponding location in the source, not just the original source of the page. but source after all Javascript took effect.
In fact, if you are using Internet Explorer, the IE developer toolbar (included in IE 8) does something similar, although I haven't used it myself.
+2
a source to share