Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.0.0-beta1.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  
</head>
<body>
  <div id="example_1" data-foo-name="bar"></div>
  
  <div id="example_2" data-foo-23="bar"></div>
  
</body>
</html>
 
console.log($('#example_1').data());
console.log("$('#example_1').data('fooName') = "+$('#example_1').data('fooName'));
console.log("$('#example_1').data('foo-name') = "+$('#example_1').data('foo-name'));
console.log($('#example_2').data());
console.log("$('#example_2').data('foo23') = "+$('#example_2').data('foo23'));
console.log("$('#example_2').data('foo-23') = "+$('#example_2').data('foo-23'));
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers