Skip to content

Instantly share code, notes, and snippets.

@paingsoethaw
Created April 28, 2018 14:01
Show Gist options
  • Save paingsoethaw/986d37f90570b9a15faecbe046320125 to your computer and use it in GitHub Desktop.
Save paingsoethaw/986d37f90570b9a15faecbe046320125 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
var td_class_value = $( "td.property" ).data("value");
alert(td_class_value);
});
</script>
</head>
<body>
<div class="property" data-value="div hello world">
<table>
<tr>
<td class="sample" data-value="sample world">
</td>
<td class="property" data-value="hello world">
</td>
</tr>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment