How do I print the indicated div (without manually disabling all other content on the page)?
I want to avoid a new preview dialog, so creating a new window with this
With CSS 3 you could use the following:
body *:not(#printarea) { display: none; }