Created
October 15, 2013 20:01
-
-
Save toshimaru/6997737 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
<html> | |
<head> | |
<title>data-attribute test</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
</head> | |
<body> | |
<div id="tgt" data-msg='my message is here!'> | |
<p>Foo</p> | |
<p>Bar</p> | |
</div> | |
<script type="text/javascript"> | |
$(function(){ | |
$('#tgt').on('click', function(e) { | |
alert($(this).data('msg')); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment