JSFiddle - React, Tailwind, and code Playground

by akhurshid

HTML

<html><head>
<script type="text/javascript">
    function printpage() {
        window.print();
    }
    </script></head>
<body>
<td align="center">test<input  name="print" class="noprint" type="submit" id="print" value="PRINT" onclick="printpage()" /></td></body></html>

CSS

@media print {    
    .noprint { display: none; }
}