Files

1 line
2.6 KiB
JSON

{"name":"jQuery.print","tagline":"Easy to use, Element Printing Plugin for jQuery","body":"# jQuery Print Plugin\r\n\r\njQuery.print is a plugin for printing specific parts of a page\r\n\r\n## Usage\r\n\r\nInclude it in your HTML after importing jQuery, like:\r\n\t<script type=\"text/JavaScript\" src=\"path/to/jquery.print.js\" />\r\n\t\r\nUse it like:\r\n\r\n\t$(\"#myElementId\").print(/*options*/);\r\n\t\r\nor\r\n\r\n\t$.print(\"#myElementId\" /*, options*/);\r\n\t\r\nYou can submit the options object like:\r\n\r\n\t$(\"#myElementId\").print({\r\n\t\taddGlobalStyles : true,\r\n\t\tstylesheet : null,\r\n\t\trejectWindow : true,\r\n\t\tnoPrintSelector : \".no-print\",\r\n\t\tiframe : true,\r\n\t\tappend : null,\r\n\t\tprepend : null\r\n\t});\r\n\t\r\nCurrently this plugin supports the following options:\r\n\r\n####globalStyles\r\n\r\n - Default: `true` \r\n - Acceptable-Values: Boolean \r\n - Function: Whether or not the styles from the parent document should be included\r\n\r\n####mediaPrint\r\n\r\n - Default: `false` \r\n - Acceptable-Values: Boolean \r\n - Function: Whether or not link tags with media='print' should be included; Over-riden by the `globalStyles` option\r\n\r\n####stylesheet\r\n\r\n - Default: `null`\r\n - Acceptable-Values: URL-string\r\n - Function: URL of an external stylesheet to be included\r\n\r\n####noPrintSelector\r\n\r\n - Default: `\".no-print\"`\r\n - Acceptable-Values: Any valid `jQuery-selector`\r\n - Function: A selector for the items that are to be excluded from printing\r\n\r\n####iframe\r\n\r\n - Default: `true`, creates a hidden iframe if no-vaild iframe selector is passed\r\n - Acceptable-Values: Any valid `jQuery-selector` or Boolean\r\n - Function: Whether to print from an iframe instead of a pop-up window; can take the `jQuery-selector` of an existing iframe as value\r\n\r\n####append/prepend\r\n\r\n - Default: `null`\r\n - Acceptable-Values: Any valid `jQuery-selector` or HTML-text\r\n - Function: Adds custom HTML before (prepend) or after (append) the selected content\r\n\r\n## Tested with\r\n\r\n### jQuery\r\n* [jQuery](http://jquery.com/) v. 1.7.2\r\n* [jQuery](http://jquery.com/) v. 1.9.1\r\n\r\n### Browsers\r\n* Google Chrome - v 20, 26\r\n* Internet Explorer - v 10\r\n\r\n## License\r\n[CC-BY](http://creativecommons.org/licenses/by/3.0/).\r\n\r\n## Demo\r\n[jsFiddle](http://jsfiddle.net/5V24U/27/)\r\n\r\n---------------------------------------\r\nLike our [work](http://doersguild.com)? [Get in touch!](mailto:mail@doersguild.com)\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}