Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     $("#loginbox").hide();
  3.  
  4.     $("#login").click(function() { $("#loginbox").toggleClass("active").slideToggle(); return false; });
  5.     $("#loginFormHide").click(function() { $("#loginbox").slideToggle(); return false; });
  6.  
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement