Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tooltipster-discovery

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tooltipster-discovery

A Tooltipster plugin to help browsing through a series of tooltips.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
increased by137.5%
Maintainers
1
Weekly downloads
 
Created
Source

tooltipster-discovery

Discovery is a Tooltipster plugin to help browsing through a series of tooltips. MIT license.

The idea is that if you hover over an element which makes a tooltip appear, and then move to an adjacent element also with a tooltip, there should be no "closing" and "opening" animations. The first tooltip closes and the second one opens immediately. This is useful when you have a row of adjacent elements, and a user wants to "browse" the tooltips of each one.

The behavior offered by this plugin is exactly the one demonstrated on Tooltipster's documentation page in the Grouped tooltips section.

Installation

Include the plugin file in your page AFTER the Tooltipster file.

<html>
    <head>
        ...
        <script type="text/javascript" src="tooltipster/dist/js/tooltipster.bundle.min.js"></script>
        <script type="text/javascript" src="tooltipster-discovery/tooltipster-discovery.min.js"></script>
    </head>
</html>

Usage

Add a common class name to the tooltips you wish to group, for example 'grouped':

<html>
    <body>
        <span class="tooltip" title="vegetable">Carrot</span>
        
        <span class="tooltip grouped" title="Fruit">Cherries</span>
        <span class="tooltip grouped" title="Fruit">Oranges</span>
        <span class="tooltip grouped" title="Fruit">Apples</span>
    </body>
</html>

Initialize your tooltips as usual:

$('.tooltip').tooltipster({...});

This plugin only works for the tooltips which use the 'hover' trigger (specifically the mouseenter or touchstart open triggers).

Discovery will have created a group core method. Use it to create a group based on the 'grouped' class name:

$.tooltipster.group('grouped');

And that's it, it should work.

To restore the normal behavior of the tooltips, just call the ungroup method:

$.tooltipster.ungroup('grouped');

You do not have to declare the Discovery plugin in the options of the tooltips, because it works at Tooltipster's core level only, not at the instance level.

Thanks to @matthew-dean for the idea of this plugin!

Keywords

FAQs

Package last updated on 14 Jun 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc