Created
August 23, 2008 20:21
-
-
Save swdyh/6938 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.forEach(document.images, function(i) { | |
var pa = i.parentNode | |
if (pa.rel && pa.rel.match(/^lightbox/)) { | |
i.src = pa.href | |
i.style.width = 'auto' | |
i.style.height = 'auto' | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment