We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b8610b commit 38f12daCopy full SHA for 38f12da
README.md
@@ -5,7 +5,10 @@ jQuery.print is a plugin for printing specific parts of a page
5
## Usage
6
7
Include it in your HTML after importing jQuery, like:
8
+
9
+```html
10
<script type="text/JavaScript" src="path/to/jquery.print.js" />
11
+```
12
13
Use it like:
14
@@ -15,10 +18,13 @@ Use it like:
15
18
16
19
or
17
20
21
+```js
22
$.print("#myElementId" /*, options*/);
-
23
24
25
You can submit the options object like:
26
27
28
$("#myElementId").print({
29
globalStyles: true,
30
mediaPrint: false,
@@ -30,7 +36,8 @@ You can submit the options object like:
36
manuallyCopyFormValues: true,
31
37
deferred: $.Deferred()
32
38
});
33
39
40
34
41
Currently this plugin supports the following options:
35
42
43
####globalStyles
0 commit comments