You've probably encountered this: You are editing some handout, your cursor strays over the editing toolbar, a tooltip pops up, and then it just won't go away? If it happens in a game, you either have to live with it, or tell everyone to wait while you refresh the screen. Annoying!!! Here is a way to solvve that problem and get on with your game. A Bookmarklet is a snippet of Javascript code that lives in a browser bookmark. To create it, just make a regular bookmark, but instead of having it go to a URL, input this pit of JS code: javascript:(function(){ const tooltips = document.querySelectorAll('.ui-tooltip, [role="tooltip"], .tooltip'); let count = 0; tooltips.forEach(el => { el.remove(); count++; }); console.log(`[Roll20 Fix] Removed ${count} stuck tooltip(s).`); })(); And poof! Nightmare averted. If you are the type who would rather do this manually that trust someone's code on the Internet, here is what it does, in steps that you can perform manually: Right-click directly on the floating tooltip text, ex: (Outdent (⌘+[)). Select Inspect (or press F12 / Cmd+Option+I on a Mac). In the Elements panel that opens, the highlighted HTML line corresponding to the tooltip container will be selected. Press Delete or Backspace on your keyboard to remove the element node.