Switch/toggle div (jquery) - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T04:34:32Zhttp://stackoverflow.com/feeds/question/752847http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/752847/switch-toggle-div-jquery1Switch/toggle div (jquery)Jan2009-04-15T17:29:41Z2009-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><a href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
<div id="recover-password" style="display:none;"></div>
</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#7528892Answer by Shog9 for Switch/toggle div (jquery)Shog92009-04-15T17:40:32Z2009-04-15T17:46:36Z<p>First, add an ID to your hyperlink to make it easier to attach event handlers...</p>
<pre><code><a id="toggle" href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
<div id="recover-password" style="display:none;"></div>
</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#7528971Answer by pmarflee for Switch/toggle div (jquery)pmarflee2009-04-15T17:42:25Z2009-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#7529044Answer by CMS for Switch/toggle div (jquery)CMS2009-04-15T17:44:22Z2009-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><a href="javascript:void(0);" id="forgot-password">forgot password?</a>
<div id="login-form">login form</div>
<div id="recover-password" style="display:none;">recover password</div>
<script type="text/javascript">
$(function(){
$('#forgot-password').click(function(){
$('#login-form').toggle();
$('#recover-password').toggle();
});
});
</script>
</code></pre>
http://stackoverflow.com/questions/752847/switch-toggle-div-jquery/752909#7529090Answer by norbertB for Switch/toggle div (jquery)norbertB2009-04-15T17:45:37Z2009-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#7529260Answer by Brandon Montgomery for Switch/toggle div (jquery)Brandon Montgomery2009-04-15T17:53:19Z2009-04-15T17:53:19Z<p>How about this</p>
<pre><code><script type="text/javascript" language="javascript">
$("#toggle").click(function() { $("#login-form, #recover-password").toggle(); });
</script>
</code></pre>
<p>For your HTML looking like:</p>
<pre><code><a id="toggle" href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
<div id="recover-password" style="display:none;"></div>
</code></pre>
<p>Hey, alright! One line! I <3 jQuery.</p>