A autoSave jQuery Plugin
-
Include necessary JS files
<script src="jquery.js"></script> <script src="jquery.autoSave.min.js"></script>
-
(Optional) Add autoSave CSS file. Please tweak it to serve your needs.
<link rel="stylesheet" href="style.css" />
-
Create the following HTML element
<textarea id="text"></textarea> <span id="msg"></span>
-
Use plugin by following script
var txtContent = $("#text"); if (localStorage) { var content = localStorage.getItem("autoSave"); if (content) { txtContent.text(content); } } txtContent.autoSave(function() { var time = showTime(); $("#msg").text("Draft Autosaved " + time); }, 500);
-
Have fun:-)
- IE8 and above, Firefox, Chrome, Safari and Opera
Released under the MIT license.