Skip to content

Instantly share code, notes, and snippets.

@dira
Created October 15, 2012 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dira/3892442 to your computer and use it in GitHub Desktop.
Save dira/3892442 to your computer and use it in GitHub Desktop.
Get all caption texts in the 'Captions' screen in Picasa
areas = document.getElementsByTagName('textarea')
for (i in areas) {
text = areas[i].innerHTML
if (text !== undefined && text.indexOf('Click to') == -1) {
console.log(text);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment