Skip to content

Instantly share code, notes, and snippets.

@releu
Created January 21, 2014 21:23
Show Gist options
  • Save releu/8548672 to your computer and use it in GitHub Desktop.
Save releu/8548672 to your computer and use it in GitHub Desktop.
retina images for twitter
var replaceImages = function(){
$("img").each(function(i, img){
var src = img.src.replace(/_normal/, "")
src = src.replace(/_bigger/, "")
if (img.src != src)
img.src = src
})
}
setInterval(replaceImages, 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment