Skip to content

Commit 38f12da

Browse files
author
Sathvik Ponangi
committed
Update README.md
1 parent 1b8610b commit 38f12da

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ jQuery.print is a plugin for printing specific parts of a page
55
## Usage
66

77
Include it in your HTML after importing jQuery, like:
8+
9+
```html
810
<script type="text/JavaScript" src="path/to/jquery.print.js" />
11+
```
912
1013
Use it like:
1114
@@ -15,10 +18,13 @@ Use it like:
1518
1619
or
1720
21+
```js
1822
$.print("#myElementId" /*, options*/);
19-
23+
```
24+
2025
You can submit the options object like:
2126
27+
```js
2228
$("#myElementId").print({
2329
globalStyles: true,
2430
mediaPrint: false,
@@ -30,7 +36,8 @@ You can submit the options object like:
3036
manuallyCopyFormValues: true,
3137
deferred: $.Deferred()
3238
});
33-
39+
```
40+
3441
Currently this plugin supports the following options:
3542
3643
####globalStyles

0 commit comments

Comments
 (0)