Created
January 7, 2013 12:39
-
-
Save bjankord/4474677 to your computer and use it in GitHub Desktop.
Responsive Images w/ Modernizr. Source: http://craftedpixelz.co.uk/blog/conditional-js-with-modernizr-mq/
This file contains hidden or 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
<img class="img" src="http://placekitten.com/320/480" alt="" data-big="http://placekitten.com/1024/768" /> |
This file contains hidden or 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
$(".img").each(function() { | |
if (Modernizr.mq('only screen and (min-width: 600px)')) { | |
$(this).attr("src", $(this).attr("data-big")); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment