Advertisement
Guest User

Untitled

a guest
Sep 15th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  * Created by Fabi on 13.09.14.
  3.  */
  4. $(document).foundation(function(){
  5.  
  6. });
  7.  
  8. $(function(){
  9.     //Button, that should be clicked
  10.     var $loveB = $('#love-button');
  11.     //div box around the icon
  12.     var $loveA = $('#love-area');
  13.     //icon itself
  14.     var $loveI = $('#love-icon');
  15.  
  16.  
  17.     $loveB.click(function(){
  18.         $loveI.fadeOut('fast',200);
  19.     });
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement