vote up 2 vote down star
1

Hello.

I wish to accomplish a simple task (I hope!)

I got two div tags and 1 anchor tags, like this:

<a href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
<div id="recover-password" style="display:none;"></div>

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.

How can this be done the best way?

Best regards.

flag

6 Answers

vote up 5 vote down check

Since one div is initially hidden, you can simply call toggle for both divs:

<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>
link|flag
This works aswell - thanks for your input! Much appreciated! – Jan Apr 15 at 17:52
vote up 0 vote down

I saw a solution on eRunways a while ago.

link|flag
vote up 0 vote down

How about this

<script type="text/javascript" language="javascript">
    $("#toggle").click(function() { $("#login-form, #recover-password").toggle(); });
</script>

For your HTML looking like:

<a id="toggle" href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
<div id="recover-password" style="display:none;"></div>

Hey, alright! One line! I <3 jQuery.

link|flag
vote up 0 vote down

I think you want this:

$('#recover-password').show();

or

$('#recover-password').toggle();

This is made possible by JQuery

Hope this helps...

link|flag
vote up 1 vote down

You could write a simple jQuery plugin to do this. The plugin would look like:

(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);
    });
};

} (jQuery));

Then wire the plugin up to the click event for the anchor tag:

$(document).ready(function() {
    $("#mylink").click(function() {
        $("div").expandcollapse();
    });
});

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.

link|flag
Thanks! This is exactly what I am looking for! – Jan Apr 15 at 17:51
@pmarflee: you've effectively re-implemented the built-in toggle() function... ;-) – Shog9 Apr 15 at 17:54
1  
Shog9 - I didn't know that existed. Guess I need to brush up on my jQuery skills... – pmarflee Apr 15 at 17:56
vote up 3 vote down

First, add an ID to your hyperlink to make it easier to attach event handlers...

<a id="toggle" href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
<div id="recover-password" style="display:none;"></div>

Then, write a bit of script to wire up a click event. We'll use the jQuery toggle() helper to attach handlers for both states:

$(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();
  });
});

Alternately, you can take advantage of jQuery's toggle() effect to simplify the code (as CMS points out):

$(function() // run after page loads
{
  $("#toggle").click(function()
  { 
    // hides matched elements if shown, shows if hidden
    $("#login-form, #recover-password").toggle();
  });
});
link|flag
Very nice aswell - No idea there was so many ways. Thanks for your input! – Jan Apr 15 at 17:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.