Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Try the jQuery Tooltip:<br /></p> <p><strong>Here is an example according to your request:</strong><br /> <a href="http://jsfiddle.net/cadence96/3X2eZ/" rel="nofollow">http://jsfiddle.net/cadence96/3X2eZ/</a></p> <p><strong>DOCS</strong><br /> <a href="http://docs.jquery.com/Plugins/Tooltip" rel="nofollow">http://docs.jquery.com/Plugins/Tooltip</a><br /> <a href="http://jquery.bassistance.de/tooltip/demo/" rel="nofollow">http://jquery.bassistance.de/tooltip/demo/</a><br /></p> <p><strong>Quick instructions:</strong><br /> 1) Within the &lt;head> load the css and scripts:</p> <pre><code>&lt;link href="http://jquery.bassistance.de/tooltip/jquery.tooltip.css" rel="stylesheet" type="text/css" /&gt; &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"&gt;&lt;/script&gt; &lt;script src="http://jquery.bassistance.de/tooltip/jquery.tooltip.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>2) Still within the &lt;head> place the execution script:</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $(".your-div").tooltip({ track: true, delay: 0, showURL: false, fade: 250, bodyHandler: function() { return $($(this).next().html()); }, showURL: false }); }); &lt;/script&gt; </code></pre> <p>The class '.my-div' will be used to display the image with the hover event.<br /> The sibling div to '.my-div' must contain the hidden elements to make visible after hovering.<br /></p> <pre><code>&lt;ul&gt; &lt;li&gt; &lt;div class="my-div"&gt; &lt;!-- Here comes the image with the hover event --&gt; &lt;/div&gt; &lt;div class="active-hover"&gt; &lt;!-- Here comes all the hidden elements I want to display while hovering the PREVIOUS div --&gt;&lt;br /&gt; &lt;!-- .active-hover must be set with display:none --&gt; &lt;/div&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>That's all!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload