Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <span data-icon="g">Click me</span>
</body>
</html>
 
(function() {
  var someElement = document.getElementsByTagName('span')[0];
  
  someElement.addEventListener('click', function(e) {
    someElement.setAttribute('data-icon', 'f');
    someElement.removeChild(someElement.childNodes[0]);
    someElement.appendChild(document.createTextNode('Again!'));
  });
}());
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers