Created
August 10, 2009 20:19
-
-
Save eastmedia/165389 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 characters
3 $(document).ready(function() { | |
4 $('.blue').click(function() { | |
5 console.log('in function for click on blue class'); | |
6 return false; | |
7 }); | |
8 }); |
This file contains hidden or 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 characters
in function for click on blue class | |
in function for click on blue class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment