Guest User

Untitled

a guest
Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $('#button-submit-login').click(function(){
  2. if($('#form-login-fields').is(':hidden')){
  3. $('#button-register').hide();
  4. $('#form-login-fields').show("slide",{
  5. direction: "right"
  6. },1500, fucntion(){
  7. // callback function goes here
  8. });
  9. }
  10. else{
  11. $('#form-login').submit();
  12. return false;
  13. }
  14. });
Add Comment
Please, Sign In to add comment