Last active
December 26, 2015 17:39
-
-
Save catvec/7188566 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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
</head> | |
<body> | |
<div class="clickOBJ"> | |
OBJ 1 | |
</div> | |
<div class="clickOBJ"> | |
OBJ 2 | |
</div> | |
<div class="clickOBJ"> | |
OBJ 3 | |
</div> | |
<div class="clickOBJ"> | |
OBJ 4 | |
</div> | |
<script> | |
$('.clickOBJ').click(function(){ | |
alert(this.html()); | |
}); | |
//If you have the div with the text of OBJ 2 it would alert 'OBJ 2' and if you clicked on the div with | |
//the text of OBJ 4 it would alert 'OBJ 4' | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment