Is there a method to uncover the EXACT backgroundSize of an image in the background of an element?
CSS3 offers values like auto or percentage, but I'm interested in determining specific measurements (like 200px by 100px).
I am aware that one approach involves loading the background-image using the load() function on a hidden img element, then obtaining its height and width using browser functions or jQuery...
However, this method is slow since it loads the image again. Is there a way to retrieve the size from an already rendered background image element?