Dear All,
If I add in a HTML page two buttons like
- <button type="button" id="B2" onclick="alert('Hello world!')">Accept</button>
- <button type="button" id="B3" onclick="alert('Hello world!')">Reject</button>
Furthermore, the Print - PDF buttons have enabled.. I know that with the
- @media print
- {
- #B3,#B2 {
- display: none;
- }
- }
I can hide the two buttons. But how can I hide them in the PDF button?