marcbachmann / node-html-pdf

This repo isn't maintained anymore as phantomjs got dreprecated a long time ago. Please migrate to headless chrome/puppeteer.
MIT License
3.56k stars 545 forks source link

Disable links/anchor tag click #554

Open amitchapter247 opened 4 years ago

amitchapter247 commented 4 years ago

I need to disable all the anchor tags click I try this CSS but not working:

a {
      pointer-events: none!important;
     cursor: not-allowed!important;
      opacity: 1;
      z-index: -2;
      text-decoration: none!important;
     color: #282d35;
    }

after applying this CSS only text-decoration remove but the link is still clickable.