Note that there are some explanatory texts on larger screens.

plurals
  1. PODropdownmenu Delay not working
    primarykey
    data
    text
    <p>I need a delay on my dropdownmenu. i tried to use, hoverintent but its not working, cant find my error.</p> <p>My CSS:</p> <p><a href="http://pastie.org/3621320" rel="nofollow">CSS</a></p> <p>My Dropdown:</p> <pre><code>&lt;div id="menu" class="menu"&gt;&lt;ul&gt;&lt;li class="first"&gt;&lt;a href=index.php" title="Home" &gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=13" title="Verein" &gt;Verein&lt;/a&gt;&lt;ul&gt;&lt;li class="first"&gt;&lt;a href="index.php?id=33" title="Vorstand" &gt;Vorstand&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=5" title="Mitglieder" &gt;Mitglieder&lt;/a&gt;&lt;/li&gt; &lt;li class="last"&gt;&lt;a href="index.php?id=6" title="Anfahrt" &gt;Anfahrt&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=7" title="Kontakt" &gt;Kontakt&lt;/a&gt;&lt;ul&gt;&lt;li class="first"&gt;&lt;a href="/content/Anmeldung_OG_Schau_17_06_2012.doc" title="Ortsgruppenschau" &gt;Ortsgruppenschau&lt;/a&gt;/li&gt; &lt;/ul&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=16" title="Hunde" &gt;Hunde&lt;/a&gt;&lt;ul&gt;&lt;li class="first"&gt;&lt;a href="index.php?id=10" title="Hundeschule" &gt;Hundeschule&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=9" title="Hundesport" &gt;Hundesport&lt;/a&gt;&lt;/li&gt; &lt;li class="last"&gt;&lt;a href="index.php?id=31" title="Rassen" &gt;Rassen&lt;/a&gt;&lt;ul&gt;&lt;li class="first"&gt;&lt;a href="index.php?id=19" title="Riesenschnauzer" &gt;Riesenschnauzer&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=20" title="Schnauzer" &gt;Schnauzer&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=28" title="Zwergschnauzer" &gt;Zwergschnauzer&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=29" title="Deutscher Pinscher" &gt;Deutscher Pinscher&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=30" title="Zwergpinscher" &gt;Zwergpinscher&lt;/a&gt;&lt;/li&gt; &lt;li class="last"&gt;&lt;a href="index.php?id=32" title="Affenpinscher" &gt;Affenpinscher&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;&lt;/li&gt; &lt;/ul&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=25" title="Galerie" &gt;Galerie&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=27" title="Presse" &gt;Presse&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="index.php?id=34" title="Termine" &gt;Termine&lt;/a&gt;&lt;/li&gt; &lt;li class="active"&gt;&lt;a href="index.php?id=35" title="Links" &gt;Links&lt;/a&gt;&lt;/li&gt; &lt;li class="last"&gt;&lt;a href="index.php?id=36" title="Impressum" &gt;Impressum&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;&lt;/div&gt;&lt;/div&gt; </code></pre> <p>My js call:</p> <pre><code>$(function(){ var config = { sensitivity: 3, // number = sensitivity threshold (must be 1 or higher) interval: 200, // number = milliseconds for onMouseOver polling interval over: doOpen, // function = onMouseOver callback (REQUIRED) timeout: 2000, // number = milliseconds delay before onMouseOut out: doClose // function = onMouseOut callback (REQUIRED) }; function doOpen() { $(this).addClass("hover"); $('ul:first',this).css('visibility', 'visible'); } function doClose() { $(this).removeClass("hover"); $('ul:first',this).css('visibility', 'hidden'); alert("test"); } $(".menu ul li").hoverIntent(config); $(".menu ul li ul li:has(ul)").find("a:first").append(" &amp;raquo; "); }); </code></pre> <p>If i go over the dropdown menu its saying the test, so it finding the function and there is no error in it, but its not working. How can i get that fixed?</p> <p>Demo: <a href="http://hanfrey.bplaced.net/" rel="nofollow">Demo</a></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.
 

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