An open API service indexing awesome lists of open source software.

https://github.com/k186/multiple-print

print-html with multiple selector
https://github.com/k186/multiple-print

html-print jqprint multiple print

Last synced: over 1 year ago
JSON representation

print-html with multiple selector

Awesome Lists containing this project

README

          

###multiple-print
this plugins depend on jqprint , i made some change for it ,and can print
with mutiple dom selector

##[demo](http://k186studio.com/demos/printMutil)

###how to use it

add print style with media='print'
```html

```
and your html
```html






head
head
head




someText
someText
someText










head
head
head




someText
someText
someText





```

print some dom with
```javascript
$('#print1').jqprint()

//multiple-print
$('#print1,#print2').jqprint()
```

force page break css
```css
.breakpage {
page-break-after: always;
}

.breakpage:last-child {
page-break-after:avoid;
}
```