Reputation: 1322
I want to be able to send a piece of html Dom by email, in a similar fashion I use jqPrint jQuery plugin to print a partial dom. Has anyone seen a project like that?
When a user interacts with my site having a bunch of ExtJs components and RichFaces rendered components, they will want to print/email part of their work in progress as a screen capture for audit purposes. I want to gather up part of the dom, serialize it and send it back to the server, from where I would initiate the email that will look more or less like the screen a user was seeing prior to initiating this action.
Any suggestions?
Upvotes: 0
Views: 84
Reputation: 5198
Google is doing this in Google+ and a talented developer reverse engineered it and produced http://html2canvas.hertzen.com/ . To work in IE you'll need a canvas support library such as http://excanvas.sourceforge.net/
Upvotes: 1