Skip to content

Instantly share code, notes, and snippets.

@jorilallo
Forked from defunkt/grove.io.js
Created August 25, 2011 17:37
Show Gist options
  • Save jorilallo/1171241 to your computer and use it in GitHub Desktop.
Save jorilallo/1171241 to your computer and use it in GitHub Desktop.
grove.io dotjs script for inlining images
setInterval(function(){
$('.content a').each(function() {
if (/\.(gif|jpe?g|png)/i.test($(this).text()))
$(this).html('<img src="'+$(this).text()+'"/>')
})
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment