Advertisement
Guest User

Untitled

a guest
Oct 19th, 2013
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('div').mouseenter(function() {
  3. $(this).animate({
  4. height: '+=10px'
  5. });
  6. });
  7. $('div').mouseleave(function() {
  8. $(this).animate({
  9. height: '-=10px'
  10. });
  11. });
  12. $('div').click(function() {
  13. $(this).toggle(1000);
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement