I would like to print div contents while keeping the css applied on the div and it inner html.
Am using jQuery Print Element but its striping off the css.
|
|
|
How about
|
|||||||||
|
|
Use the .html() method. It will grab all of the HTML inside of the selected element.
|
|||
|
|
|
You can access all contents of your div with
this includes all tags and also texts. If you are only interested at the code you could use
this will give you the content as string. To print out the code just insert it into another element
If some styles aren't applied, maybe they depend on the wraping elements and their classes, that's an important thing to grok. |
|||
|
|
|
https://github.com/jasonday/printThis Plugin I authored for this exact scenario. |
|||
|
|