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 jQuery it's as simple as this:
w=window.open(); w.document.write($('.report_left_inner').html()); w.print(); w.close();