Created
February 14, 2012 13:58
-
-
Save sapandiwakar/1826953 to your computer and use it in GitHub Desktop.
jQuery click on image div
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
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery-latest.js"></script> | |
<script type="text/javascript"> | |
$("divClass").live("click", function () { | |
<!-- | |
your definition --> | |
}); | |
</script> | |
</head> | |
<body> | |
<div id="divClass"> | |
<img src="image1.png" alt="gallery" width="110" height="90" /> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment