One line browser notepad

Sometimes I just need to type garbage. Just to clear out my mind. Using editors to type such gibberish annoys me because it clutters my project workspace (I’m picky, I know).

So I do this. Since I live in the browser, I just open a new tab and type in the url tab.

data:text/html, <html contenteditable>

Voila, browser notepad.

Why it works?

You don’t need to remember it. It’s not rocket science. We are using the Data URI’s format and telling the browser to render an html (try “javascript:alert(‘poop’);”). The content of said html is a simple html line with the html5 attribute contenteditable. This works only on modern browsers that understand this attribute. Click and type!

Related Posts

  • 6903 – More storm update / ponderingsSeptember 25, 2004 6903 – More storm update / ponderings Well, one benefit of all this wind and rain hubbub is that I'm becoming more intimately […]
  • March 30, 2011
  • 9393 – Sunday –August 11, 2008 9393 – Sunday – 9393 - Sunday - Had the blues, went for a walk on the boardwalk, took some pictures of […]
  • May 3, 2010 RT @laughingsquid Cupcake Canon Shooting People in the Face
  • 6600 Minor Recap, and quick bolt away.April 16, 2004 6600 Minor Recap, and quick bolt away. I did manage to get together with Dan after all today. We split a grilled cheese and […]

Leave a Reply