I'm working with obtaining the height and width of an image size
I start from an image that I know what its sizes are
width 2160px
high 3840px
My code in javacript
//Quitamos el ancho y alto que tiene en el navegador para obtener el tamaño original
$('#imagen').removeAttr("width");
$('#imagen').removeAttr("height");
alert('ancho'+$('#imagen').width()+'X alto'+$('#imagen').height());
ask what is the unit of measure that returns?