Skip to content

Instantly share code, notes, and snippets.

@romac
Created September 15, 2011 20:58
Show Gist options
  • Save romac/1220465 to your computer and use it in GitHub Desktop.
Save romac/1220465 to your computer and use it in GitHub Desktop.
( function( d )
{
var img = d.querySelector( 'img' ),
text;
text = d.createElement( 'strong' );
text.style.marginTop = '20px';
text.style.display = 'block';
text.style.textAlign = 'center';
text.innerHTML = img.title;
img.parentNode.insertBefore( text, img.nextSibling );
} )( document );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment