Skip to content

Instantly share code, notes, and snippets.

@ibnesayeed
Created February 23, 2015 21:30
Show Gist options
  • Select an option

  • Save ibnesayeed/187e337117a8148e95cd to your computer and use it in GitHub Desktop.

Select an option

Save ibnesayeed/187e337117a8148e95cd to your computer and use it in GitHub Desktop.
Rich Text Editor In Browser As Bookmarklet
data:text/html,<html><script>window.onload=function(){var a=document.body;a.addEventListener("keydown",function(b){if(b.ctrlKey&&83===b.which){document.location = 'data:text/html,' + document.childNodes[0].outerHTML;b.preventDefault();}},!1);document.title=document.body.innerText.replace(/\n[\s\S]+$/," - ")+new Date().toString();};</script><body contenteditable></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment