I'm trying to figure out how to hide the tooltip that appears when hovering over this element using Materialize CSS.
<li><a class="btn-floating green" onclick="window.print();return false;"><i class="material-icons tooltipped" data-position="left" data-delay="50" data-tooltip="Print schedule">print</i></a></li>
The issue I'm facing is that when I click on the button, the print layer immediately shows up and includes the tooltip on the printed page. I want to find a way to hide the tooltip when clicking on the print button.
Any help would be greatly appreciated. Thank you!