jquery-powertip
jquery-powertip copied to clipboard
:speech_balloon: A jQuery plugin that creates hover tooltips.
Currently there is an event before the data is rendered and after it is displayed to the user. It would be nice if there was an event that was triggered...
If the element that triggers a tooltip spans across two or mores lines the tooltip appears centred on within the viewport rather than positioned close to the appropriate target element....
If a link has a tooltip and the `target` attribute is set to `_blank` (which causes the linked resource to open in a new tab/window) the tooltip will not close...
My app is an embedded one and is displayed in iframe. And Powertip only works on initial page load. When I move to another page and then move to the...
I came across a crash while hovering over a number of items that have powertips. This is some sort of open/close race condition, because it doesn't happen often, although I...
jQuery 3.6.4 with Migrate 3.4.1 gives the following warning: > MIGRATE: jQuery.type is deprecated in: ```javascript if ($.type(opts) === 'string' && $.powerTip[opts]) { ``` This seems to be the only...
## Motivation Take a look at this beautiful tooltip, and especially the tooltip arrow, compliments of Hubspot: Notice a few things (enlarged below): - The tooltip arrow has a **border...
Can you add an option for hide the arrow ? 
It is possible to automate the `npm publish` step for releasing a new version of PowerTip with [GitHub Actions](https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages). Publishing the package in this manner also has the ability to...
The library does not seem to have a detection of nested HTML elements with titles, it seems. Minimal example: ```html $(document).ready(function() { // Fire up PowerTip: $("[title]").powerTip({ smartPlacement: true });...