Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

How about

function printDiv(id) {

  var html = "";

  $('link').each(function() { // find all <link tags that have
    if ($(this).attr('rel').indexOf('stylesheet') !=-1) { // rel="stylesheet"
      html += '<link rel="stylesheet" href="'+$(this).attr("href")+'" />';
    }
  });
  html += '<body onload="window.focus(); window.print()">+$("#"+id).html()+'</body>';
  var w = window.open("","print");
  if (w) { w.document.write(html); w.document.close() }

}
share|improve this answer
What is the "stylesheet" is it my stylesheet path? – mukamaivan Dec 31 '12 at 19:22
And how do u call your function; $('#PrintinPopup').click(function(){ printDiv("#print"); }); – mukamaivan Dec 31 '12 at 19:49
1  
Yes, but either remove your # or mine from here +$("#"+id) – mplungjan Dec 31 '12 at 20:18

Use the .html() method. It will grab all of the HTML inside of the selected element.

var myDivContents = $("div").html();
share|improve this answer

You can access all contents of your div with

var $contents = $( 'div' ).contents();

this includes all tags and also texts.

If you are only interested at the code you could use

var htmlContents = $( 'div' ).html();

this will give you the content as string.

To print out the code just insert it into another element

$( 'div.new' ).append( $contents );

$( 'div.new' ).html( htmlContents );

If some styles aren't applied, maybe they depend on the wraping elements and their classes, that's an important thing to grok.

share|improve this answer
Thanks but it still stripes off the css – mukamaivan Dec 31 '12 at 19:18

https://github.com/jasonday/printThis

Plugin I authored for this exact scenario.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.