Answers for "javascript calulate image height and set it in style"

1

javascript get image width and height

var img = new Image();
img.onload = function() {
  alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';
Posted by: Guest on March-04-2020
0

how to set image width and height dynamically in javascript

document.addEventListener('DOMContentLoaded', function() {
  var image = document.getElementById("container");
  alert(`${image.width} x ${image.height}`);
}, false);
Posted by: Guest on November-18-2020

Code answers related to "javascript calulate image height and set it in style"

Code answers related to "Javascript"

Browse Popular Code Answers by Language