Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  </head>
<body>  
Select a color : <input type="color" id="colorChooser"/>
  <script>
    var colorInputField = document.querySelector("#colorChooser");
    
    colorInputField.addEventListener('input', function(evt) {      
        document.body.style.backgroundColor = this.value;
      }, false);
  </script>
</body>
</html>
Output 300px

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

Dismiss x
public
Bin info
AuroreDechampspro
0viewers