vote up 0 vote down star

I have two elements that shouldn't be active at the same time, so when one is toggled I fade the other out, however I would like to be able to fade the open element out and then bring the other one in. Is there a way to do this that isn't a hack?

<script ="text/javascript">

$(function() {
	$('#jlogin').click(function() {
		$('#login').toggle('fast');
		$('#reg').fadeOut('fast');
	});

	$('#jreg').click(function() {
		$('#reg').toggle('fast');
		$('#login').fadeOut('fast');
	});
});

</script>

That is my current script.

flag

2 Answers

vote up 2 vote down check

Look at using the callback mechanism for fadeOut so you can chain the animations. The callback on the animation methods are called after the previous animation is complete.

 <script ="text/javascript">
    $(function() {
        $('#jlogin').click(function() {
           $('#reg').fadeOut('fast', function() {
               $('#login').toggle('fast');
           });
        });
        $('#jreg').click(function() {
            $('#login').fadeOut( 'fast', function() {
                $('#reg).toggle('fast');
            });
        });
     });
</script>
link|flag
any quick examples? – Oliver Stubley Jun 4 at 16:18
I updated my example. I think I originally misunderstood what you were trying to do, but this example should fadeOut the element that should be removed then toggle the element that (presumably) will be shown. Should you be using show instead of toggle? – tvanfosson Jun 4 at 16:23
I originally used toggle because I like the animation, will show be more beneficial? I need to be able to re-open the elements if needed. – Oliver Stubley Jun 4 at 16:26
Also, tried the example and worked great after a bit of tweaking, I think yours had a hidden error somewhere. – Oliver Stubley Jun 4 at 16:30
Yes. I see where I'm missing a closing paren and semi-colon. I've corrected it (though I still haven't tested it). – tvanfosson Jun 4 at 16:41
show 1 more comment
vote up 0 vote down

Thanks tvanfosson for you your 'chaining' demonstration. Great!

link|flag

Your Answer

Get an OpenID
or

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