Note that there are some explanatory texts on larger screens.

plurals
  1. POjQuery fadeIn and fadeOut functions do not work on element clicking
    primarykey
    data
    text
    <p>I am trying to make a pop up like thing, where a <code>div</code> shows up when I click a link. After some time, it fades away. I am able to show the <code>div</code> elements on click with some animation from <code>animation.css</code>. But I am unable to make it fade away. Here is the code:</p> <pre class="lang-html prettyprint-override"><code>&lt;!DOCTYPE HTML&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt; &lt;title&gt;Clapper&lt;/title&gt; &lt;script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"&gt;&lt;/script&gt; &lt;link type="text/css" rel="stylesheet" href="animate.css" /&gt; &lt;script type="text/javascript"&gt; function demoDisplay() { document.getElementById("clapper").style.display="block"; document.getElementById("clapperBG").style.display="block"; $("#clapper").fadeOut(200); } &lt;/script&gt; &lt;!-- STYLES --&gt; &lt;style&gt; #clapper { min-width:200px; min-height:200px; top:40%; background-color:#888; left:40%; position:absolute; z-index:1002; display:none; } #clapperBG { min-width:100%; min-height:100%; background-color:#555; opacity:0.6; position:absolute; display:none; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="wrapper"&gt; &lt;div id="main"&gt; &lt;a href="#" onclick="demoDisplay()" &gt; TEST&lt;/a&gt; &lt;div id="clapper" &gt; Some Animation GIF&lt;/div&gt; &lt;div id="clapperBG" class="animated flipInY" &gt;Background&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;footer&gt; &lt;/footer&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Please, tell me what's wrong... I tried many examples like <code>$("#clapper").fadeOut(2000);</code> and even in <code>document.ready</code> but still no good.</p>
    singulars
    1. This table or related slice is empty.
    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.
 

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