Are there any JavaScript or jQuery APIs or methods to get the dimensions of an image on the page?
Also (in addition to Rex and Ian's answers) there is:
imageElement.naturalHeight
and
imageElement.naturalWidth
These provide the height and width of the image file itself (rather than just the image element).