
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
jquery-tooltipify
Advanced tools
jQuery Tooltipify creates a slide in stylable tooltip to replace the default browser tooltip.
jQuery Tooltipify creates a slide in stylable tooltip to replace the default browser tooltip.
Please visit www.vicreative.nl for full documentation and demo.
npm install jquery-tooltipify
Import the module:
import "jquery-tooltipify";
import "jquery-tooltipify/src/tooltipify.scss";
import "jquery-tooltipify/lib/tooltipify.css";
Sets the duration of the animation in miliseconds.
datatype: Integer
default: 100.
$("[title]").tooltipify({ animationOffset : 200 });
Sets the offset used in the animation propery to animate for showing.
datatype: Integer
default: 50.
$("[title]").tooltipify({ animationDuration : 500 });
Sets the propery to animate for showing. When left empty, no animation will take place.
datatype: String
default: "left".
possible values: All properties supported by the animate method of jQuery are allowed.
$("[title]").tooltipify({ animationProperty : "top" });
Sets the content of the tooltip. This can be either text or html.
Note: When content is set, the title attribute will be ignored.
Note: When text is set, no html encoding will take place.
datatype: String
default: ""
$("span.tooltip").tooltipify({ content : "<div>my content</div>"});
Sets the class of the tooltipify container.
datatype: String
default: ""
$("span.tooltip").tooltipify({ cssClass : "tooltip-purple"});
Sets wheter the tooltip should be display aware. When set to true, the tooltip will be displayed on an other position (probably the opposite direction) when there is not enough space to display the tooltip.
datatype: Boolean
default: true
$("[title]").tooltipify({ displayAware : true });
Sets the event that hides the tooltip.
datatype: String
default: "mouseout"
possible values: Any possible jQuery event or custom event.
$("[title]").tooltipify({ hideEvent : "blur" });
Sets an offset to the left.
datatype: Integer
default: 0
$("[title]").tooltipify({ offsetLeft : 10 });
Sets an offset to the top.
datatype: Integer
default: 0
$("[title]").tooltipify({ offsetTop : 10 });
Sets the final opacity of the tooltip. This will be faded in from 0.
datatype: Double
default: 0.8
$("[title]").tooltipify({ opacity : 1 });
Sets the position of the tooltip.
datatype: String
default: "top"
possible values: "top", "left", "right", "bottom"
$("[title]").tooltipify({ position : "right" });
Sets the event that triggers the tooltip.
datatype: String
default: "mouseover"
possible values: Any possible jQuery event or custom event.
$("[title]").tooltipify({ showEvent : "click" });
Sets a width to the tooltip.
datatype: Integer
default: null. The tooltip has the same height as its content.
$("[title]").tooltipify({ width : 200 });
Hides the tooltip.
$("[title]").tooltipify("hide");
Shows the tooltip.
$("[title]").tooltipify("show");
Destroys the tooltipify element and unbinds all events.
$("[title]").tooltipify("destroy");
FAQs
jQuery Tooltipify creates a slide in stylable tooltip to replace the default browser tooltip.
We found that jquery-tooltipify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.