How to remove href value while printing webpage
This is usually caused due to Bootstrap. Bootstrap CSS file has: @media print { a[href]:after { content: ” (” attr(href) “)”; } } Just remove it from there, or override it in your own print stylesheet: @media print { a[href]:after Continue reading How to remove href value while printing webpage