In this below script, remove url href values when printing in Chrome using javascript
your printed webpages you will need to use your CSS styles to override it.
Customize the print CSS, and finding that it prints links out with the
}@media print {
a[href]:after {
content: none !important;
}
}
Customize the print CSS, and finding that it prints links out with the
href
value as well as the link.}@media print {
a[href]:after {
content: none !important;
}
}
No comments:
Post a Comment