Guest User

Untitled

a guest
Jun 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('#verstecken').click(function() {
  3. if ($('#versteckt').is(":hidden"))
  4. {
  5. $('#versteckt').slideDown("slow");
  6. } else {
  7. $('#versteckt').slideUp("slow");
  8. }
  9. return false;
  10. });
  11. });
Add Comment
Please, Sign In to add comment