Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[evenement javascript]">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>event javascript</title>
</head>
<body>
  <div class="carre"></div>
  
</body>
</html>
 
var carre = document.querySelector('.carre');
carre.onclick = change;
function change(){
  this.style.background='blue';
  this.style.width="300px";
};
 
Output

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

Dismiss x
public
Bin info
romain-Esa75pro
0viewers