Note that there are some explanatory texts on larger screens.

plurals
  1. POjQuery - Show/Hide Image on Expand Collapse Toggle
    primarykey
    data
    text
    <p>I have a simple issue. I have developed some code that collapses and expands to DIV's using the <a href="http://api.jquery.com/slideToggle/" rel="nofollow">slideToggle</a>. What i want to now do is show/hide the corresponding expand and collapse images.</p> <p><strong>.htmlpage:</strong></p> <pre><code>&lt;li&gt; &lt;div class="toggle_head togglebackground"&gt; &amp;nbsp&lt;img src="images/expand.png" alt="Expand" id="expand" class="expand"&gt; &amp;nbsp&lt;img src="images/collapse.png" alt="Collapse" id="collapse" class="collapse"&gt; &lt;label&gt; Cookies&lt;/label&gt; &lt;/div&gt; &lt;div class="box toggle_body"&gt; &lt;ul class="list"&gt; &lt;li&gt; &lt;label disabled="disabled"&gt;Information about cookies.....&lt;/label&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;!-- !END section (Cookies) --&gt; &lt;/li&gt; &lt;li&gt; &lt;div class="toggle_head togglebackground"&gt; &amp;nbsp&lt;img src="images/expand.png" alt="Expand" id="expand" class="expand"&gt; &amp;nbsp&lt;img src="images/collapse.png" alt="Collapse" id="collapse" class="collapse"&gt; &lt;label&gt; Terms&lt;/label&gt; &lt;/div&gt; &lt;div class="box toggle_body"&gt; &lt;ul class="list"&gt; &lt;li&gt; &lt;label disabled="disabled"&gt;Information about terms and conditions.....&lt;/label&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;!-- !END section (Terms) --&gt; &lt;/li&gt; </code></pre> <p>jQuery code:</p> <pre><code>$( document ).ready(function() { //hide the all of the element with class msg_body $(".toggle_body").hide(); $(".collapse").hide(); //toggle the componenet with class msg_body $(".toggle_head").click(function() { $(this).next(".toggle_body").slideToggle(300); //$(".collapse").show(); //$(this).next(".collapse").show(); }); }); </code></pre> <p>Thanks</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