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>
  <img src="https://placekitten.com/g/400/600" width="300" height="450">
  
  <output></output>
</body>
</html>
 
var myImg = document.querySelector('img'),
    op    = document.querySelector('output');
op.innerHTML = "Computed width: " +
               getComputedStyle(myImg).getPropertyValue('width') + 
               '<br>' + 'img.width: ' +
               myImg.width + 
               '<br>' + 'getAttribute(width): ' +
               myImg.getAttribute('width') + 
               '<br>' + 'img.naturalWidth: ' +
               myImg.naturalWidth;
Output

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

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers