Skip to content

Instantly share code, notes, and snippets.

@duncansmart
Created April 23, 2015 10:59
Show Gist options
  • Save duncansmart/2e9dbc488120b77d3c7f to your computer and use it in GitHub Desktop.
Save duncansmart/2e9dbc488120b77d3c7f to your computer and use it in GitHub Desktop.
Get iCloud Reminders as text
[].map.call(document.querySelectorAll('iframe[name=reminders]')[0].contentDocument.querySelectorAll('.reminder-not-completed-view .reminder-row .reminder-title'), function(el) {
return el.textContent;
}).join('\r\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment