Skip to content

Instantly share code, notes, and snippets.

@akatz
Created September 11, 2008 13:55
Show Gist options
  • Save akatz/10225 to your computer and use it in GitHub Desktop.
Save akatz/10225 to your computer and use it in GitHub Desktop.
$('#button-submit-login').click(function(){
if($('#form-login-fields').is(':hidden')){
$('#button-register').hide();
$('#form-login-fields').show("slide",{
direction: "right"
},1500, fucntion(){
// callback function goes here
});
}
else{
$('#form-login').submit();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment