jquery.jqprint.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. (function($) {
  2. var opt;
  3. $.fn.jqprint = function (options) {
  4. opt = $.extend({}, $.fn.jqprint.defaults, options);
  5. var $element = (this instanceof jQuery) ? this : $(this);
  6. if (opt.operaSupport && $.browser.opera)
  7. {
  8. var tab = window.open("","jqPrint-preview");
  9. tab.document.open();
  10. var doc = tab.document;
  11. }
  12. else
  13. {
  14. var $iframe = $("<iframe />");
  15. if (!opt.debug) { $iframe.css({ position: "absolute", width: "0px", height: "0px", left: "-600px", top: "-600px" }); }
  16. $iframe.appendTo("body");
  17. var doc = $iframe[0].contentWindow.document;
  18. }
  19. if (opt.importCSS)
  20. {
  21. if ($("link[media=print]").length > 0)
  22. {
  23. $("link[media=print]").each( function() {
  24. doc.write("<link type='text/css' rel='stylesheet' href='" + $(this).attr("href") + "' media='print' />");
  25. });
  26. }
  27. else
  28. {
  29. $("link").each( function() {
  30. doc.write("<link type='text/css' rel='stylesheet' href='" + $(this).attr("href") + "' />");
  31. });
  32. }
  33. }
  34. if (opt.printContainer) { doc.write($element.outer()); }
  35. else { $element.each( function() { doc.write($(this).html()); }); }
  36. doc.close();
  37. (opt.operaSupport && $.browser.opera ? tab : $iframe[0].contentWindow).focus();
  38. setTimeout( function() { (opt.operaSupport && $.browser.opera ? tab : $iframe[0].contentWindow).print(); if (tab) { tab.close(); } }, 1000);
  39. }
  40. $.fn.jqprint.defaults = {
  41. debug: false,
  42. importCSS: true,
  43. printContainer: true,
  44. operaSupport: true
  45. };
  46. jQuery.fn.outer = function() {
  47. return $($('<div></div>').html(this.clone())).html();
  48. }
  49. })(jQuery);