DoersGuild/jQuery.print

hide href links

easdev opened this issue · 2 comments

Hi - how do you hide the href links, but still print the text within the link? TQ

Please see http://stackoverflow.com/a/12051232/937891

@media print {
  a[href]:after {
    content: none !important;
  }
}

perfect TQ