Schvenn's Notepad

Bookmark: http://notepad.schvenn.ca

http://notepad.schvenn.ca

Category: Websites & Domains

Description:

I created this page as an experiment, but it's endlessly useful. It's a browser based notepad that keeps data between sessions and allows you to type notes, but also copy web content, such as links, tables, images and other HTML elements.

If you want to create your own, here's the smallest possible version of the file; only 298 characters and it's even cross-browser compatible:

<div id=1 contenteditable style="background:#ffd;overflow:auto;padding:5;width:98%;height:95%" onkeyup=localStorage.setItem(1,this.innerHTML)></div>
<script>document.getElementById(1).innerHTML=localStorage.getItem(1)</script>
<input type=reset onClick="localStorage.clear();location.reload()">

Created: 17 Mar 2016 18:07
Updated: 17 Apr 2017 21:56



Bookmark http://notepad.schvenn.ca
Profile
Category: Websites & Domains
Description

I created this page as an experiment, but it's endlessly useful. It's a browser based notepad that keeps data between sessions and allows you to type notes, but also copy web content, such as links, tables, images and other HTML elements.

If you want to create your own, here's the smallest possible version of the file; only 298 characters and it's even cross-browser compatible:

<div id=1 contenteditable style="background:#ffd;overflow:auto;padding:5;width:98%;height:95%" onkeyup=localStorage.setItem(1,this.innerHTML)></div>
<script>document.getElementById(1).innerHTML=localStorage.getItem(1)</script>
<input type=reset onClick="localStorage.clear();location.reload()">
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License