Last active
December 16, 2015 13:19
Revisions
-
vpivo revised this gist
Apr 23, 2013 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,4 +10,12 @@ $(document).ready(function() { $('button').click(function() { $('.vanish').fadeOut('slow'); }); }); Using this: $(document).ready(function() { $('div').click(function() { $(this).fadeOut('slow'); }); }); -
vpivo revised this gist
Apr 23, 2013 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,10 @@ $(document).ready(function() { $(thingToClick).event(function() { $(thingToAffect).effect(); }); }); $(document).ready(function() { $('button').click(function() { $('.vanish').fadeOut('slow'); }); }); -
vpivo created this gist
Apr 23, 2013 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ Format: $(document).ready(function() { $(thingToClick).event(function() { $(thingToAffect).effect(); }); });