JSFiddle - React, Tailwind, and code Playground

by TCloud

HTML

<img class="new-img" src="https://jasondwalkow.files.wordpress.com/2015/08/jquery2.jpg" alt="">

JavaScript

// Jquery 1.9.1

// Простой способ

let imgWidth = $(".new-img").width()
let imgHeight = $(".new-img").height()

console.log(imgWidth, imgHeight)


// Можно передавать картинку в функцию
function getSize(elem){
	let result = {};
  
  result.width = $(elem).width()
  result.height = $(elem).height()
  
  return result;
}

// Тестим функцию
let imgElem = $("img");
let size = getSize(imgElem)

console.log(size)