See the current html state of page in IE
Found an interesting little post on Ajaxian, often in the SEO bussiness you want to find the source code as fully rendered by the browsers. This is an easy method to do so, place this code in your address bar when viewing the page.
javascript:''+window.document.body.outerHTML+'';
There is also a number of good comments expanding on the idea.
Leave a Comment