Skip to content

Instantly share code, notes, and snippets.

@bjankord
Created January 7, 2013 12:39
Show Gist options
  • Save bjankord/4474677 to your computer and use it in GitHub Desktop.
Save bjankord/4474677 to your computer and use it in GitHub Desktop.
<img class="img" src="http://placekitten.com/320/480" alt="" data-big="http://placekitten.com/1024/768" />
$(".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