Guest User

Untitled

a guest
Jan 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. ( function( d )
  2. {
  3. var img = d.querySelector( 'img' ),
  4. text;
  5.  
  6. text = d.createElement( 'strong' );
  7. text.style.marginTop = '20px';
  8. text.style.display = 'block';
  9. text.style.textAlign = 'center';
  10. text.innerHTML = img.title;
  11.  
  12. img.parentNode.insertBefore( text, img.nextSibling );
  13.  
  14. } )( document );
Add Comment
Please, Sign In to add comment