Advertisement
nrzmalik

Trun off Storyline Player ToolTip

Dec 8th, 2023 (edited)
424
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.25 KB | Source Code | 1 0
  1. function addCssToHead(cssRules) {
  2.     var styleElement = document.createElement('style');
  3.     styleElement.textContent = cssRules;
  4.     document.head.appendChild(styleElement);
  5. }
  6.  
  7. var css = ` #tooltip{
  8.     opacity: 0 !important;
  9. } `;
  10. addCssToHead(css);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement