Created
June 21, 2013 07:30
-
-
Save venblee/5829521 to your computer and use it in GitHub Desktop.
On Container Click Event Binding
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 characters
var myContainer = $('.centercontainer') | |
myContainer.on('click' ,'.myclass' , function(e){ | |
e.preventDefault(); | |
// Do your Stuff Here for on click. | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment