Switch/toggle div (jquery) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T04:34:32Z http://stackoverflow.com/feeds/question/752847 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/752847/switch-toggle-div-jquery 1 Switch/toggle div (jquery) Jan 2009-04-15T17:29:41Z 2009-04-15T17:53:19Z <p>Hello.</p> <p>I wish to accomplish a simple task (I hope!)</p> <p>I got two div tags and 1 anchor tags, like this:</p> <pre><code>&lt;a href="javascript:void(0);"&gt;forgot password?&lt;/a&gt; &lt;div id="login-form"&gt;&lt;/div&gt; &lt;div id="recover-password" style="display:none;"&gt;&lt;/div&gt; </code></pre> <p>What I wish to accomplish is use the anchor tag to toggle between the two div tags, hide the one and show the other and visa versa.</p> <p>How can this be done the best way?</p> <p>Best regards.</p> http://stackoverflow.com/questions/752847/switch-toggle-div-jquery/752889#752889 2 Answer by Shog9 for Switch/toggle div (jquery) Shog9 2009-04-15T17:40:32Z 2009-04-15T17:46:36Z <p>First, add an ID to your hyperlink to make it easier to attach event handlers...</p> <pre><code>&lt;a id="toggle" href="javascript:void(0);"&gt;forgot password?&lt;/a&gt; &lt;div id="login-form"&gt;&lt;/div&gt; &lt;div id="recover-password" style="display:none;"&gt;&lt;/div&gt; </code></pre> <p>Then, write a bit of script to wire up a click event. We'll use the jQuery <a href="http://docs.jquery.com/Events/toggle#fnfn2fn3.2Cfn4.2C..." rel="nofollow"><code>toggle()</code></a> helper to attach handlers for both states:</p> <pre><code>$(function() // run after page loads { $("#toggle").toggle(function() { // first click hides login form, shows password recovery $("#login-form").hide(); $("#recover-password").show(); }, function() { // next click shows login form, hides password recovery $("#login-form").show(); $("#recover-password").hide(); }); }); </code></pre> <p>Alternately, you can take advantage of jQuery's <a href="http://docs.jquery.com/Effects/toggle" rel="nofollow"><code>toggle()</code></a> <em>effect</em> to simplify the code (as <a href="http://stackoverflow.com/questions/752847/switch-toggle-div-jquery/752904#752904">CMS points out</a>):</p> <pre><code>$(function() // run after page loads { $("#toggle").click(function() { // hides matched elements if shown, shows if hidden $("#login-form, #recover-password").toggle(); }); }); </code></pre> http://stackoverflow.com/questions/752847/switch-toggle-div-jquery/752897#752897 1 Answer by pmarflee for Switch/toggle div (jquery) pmarflee 2009-04-15T17:42:25Z 2009-04-15T17:42:25Z <p>You could write a simple jQuery plugin to do this. The plugin would look like:</p> <pre><code>(function($) { $.fn.expandcollapse = function() { return this.each(function() { obj = $(this); switch (obj.css("display")) { case "block": displayValue = "none"; break; case "none": default: displayValue = "block"; } obj.css("display", displayValue); }); }; </code></pre> <p>} (jQuery));</p> <p>Then wire the plugin up to the click event for the anchor tag:</p> <pre><code>$(document).ready(function() { $("#mylink").click(function() { $("div").expandcollapse(); }); }); </code></pre> <p>Providing that you set the initial 'display' attributes for each div to be 'block' and 'none' respectively, they should switch to being shown/hidden when the link is clicked.</p> http://stackoverflow.com/questions/752847/switch-toggle-div-jquery/752904#752904 4 Answer by CMS for Switch/toggle div (jquery) CMS 2009-04-15T17:44:22Z 2009-04-15T17:44:22Z <p>Since one div is initially hidden, you can simply call <a href="http://docs.jquery.com/Effects/toggle" rel="nofollow">toggle</a> for both divs:</p> <pre><code>&lt;a href="javascript:void(0);" id="forgot-password"&gt;forgot password?&lt;/a&gt; &lt;div id="login-form"&gt;login form&lt;/div&gt; &lt;div id="recover-password" style="display:none;"&gt;recover password&lt;/div&gt; &lt;script type="text/javascript"&gt; $(function(){ $('#forgot-password').click(function(){ $('#login-form').toggle(); $('#recover-password').toggle(); }); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/752847/switch-toggle-div-jquery/752909#752909 0 Answer by norbertB for Switch/toggle div (jquery) norbertB 2009-04-15T17:45:37Z 2009-04-15T17:45:37Z <p>I think you want this:</p> <pre><code>$('#recover-password').show(); </code></pre> <p>or</p> <pre><code>$('#recover-password').toggle(); </code></pre> <p>This is made possible by JQuery</p> <p>Hope this helps...</p> http://stackoverflow.com/questions/752847/switch-toggle-div-jquery/752926#752926 0 Answer by Brandon Montgomery for Switch/toggle div (jquery) Brandon Montgomery 2009-04-15T17:53:19Z 2009-04-15T17:53:19Z <p>How about this</p> <pre><code>&lt;script type="text/javascript" language="javascript"&gt; $("#toggle").click(function() { $("#login-form, #recover-password").toggle(); }); &lt;/script&gt; </code></pre> <p>For your HTML looking like:</p> <pre><code>&lt;a id="toggle" href="javascript:void(0);"&gt;forgot password?&lt;/a&gt; &lt;div id="login-form"&gt;&lt;/div&gt; &lt;div id="recover-password" style="display:none;"&gt;&lt;/div&gt; </code></pre> <p>Hey, alright! One line! I &lt;3 jQuery.</p>