Advertisement
sonars

Untitled

Jul 10th, 2014
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. html:
  2.  
  3. <form name="login" action="" method="post" accept-charset="utf-8" class="logowanie">
  4. <a href="rejestracja.html">Przypomnij hasło</a>
  5. <input type="text" name="login" placeholder="Login" required>
  6. <input type="password" name="password" placeholder="Hasło" required>
  7. <input type="submit" value="Zaloguj">
  8. <a href="#" class="nosticky">X</a> <- to to to :D
  9. </form>
  10.  
  11. js:
  12.  
  13. jQuery(".nosticky").click(function(){
  14. if(jQuery(".user").hasClass("usersticky")) {
  15. jQuery(".user").removeClass("usersticky")
  16. } else {
  17. jQuery(".user").addClass("usersticky")
  18. }
  19. });
  20.  
  21. css:
  22.  
  23. .nosticky {
  24. padding-left: 10px;
  25. }
  26. .usersticky {
  27. position: absolute !important;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement