Created
September 24, 2013 16:15
-
-
Save thekarel/6687206 to your computer and use it in GitHub Desktop.
Get an Images Native Width -- From http://css-tricks.com/snippets/jquery/get-an-images-native-width/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get on screen image | |
var screenImage = $("#image"); | |
// Create new offscreen image to test | |
var theImage = new Image(); | |
theImage.src = screenImage.attr("src"); | |
// Get accurate measurements from that. | |
var imageWidth = theImage.width; | |
var imageHeight = theImage.height; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment