Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bocato/52a785e44f8e1a06f52d to your computer and use it in GitHub Desktop.
Save bocato/52a785e44f8e1a06f52d 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