JQuery hover div plugin

Is there a good jQuery plugin that I can use to display a DIV when hovering over an element, similar to how SO shows tag details (with subscription options, rss, etc.) when they hang on the tag.

Here is an example:

enter image description here

+4
source share
3 answers

Just arrived this morning, which seems terrific: Hovercard

Otherwise, there are many of them with "complex" content and more or less customizable:

+6
source

Try using jQuery Tools: http://flowplayer.org/tools/

Then you just create a tooltip:

$("[title]").tooltip(); 
0
source
 $('#yourDiv').hover(function() { $('#showMe').show(); }, function() { $('#showMe').hide(); }); 

Something like this maybe?

0
source

Source: https://habr.com/ru/post/1385130/


All Articles