Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / HTML

jsRemember

4.67/5 (4 votes)
11 Aug 2013CPOL1 min read 17.1K   202  
Save the form entries to local storage preventing loss of data on browser crashing

Introduction

The jsRemember plugin saves form entries to local storage preventing loss of data on browser crashing. It will work with most common form elements such as Text, Textarea, Password, Select (Combobox), Radio, and Checkbox.

Supported browsers include IE6+, FF2+, Safari4+, Chrome4+, Android 2+, and Opera 10.5+.

In short, if you fill in a form and close the browser, when you come back again, your data will be still there. But when the page is submitted, all stored data is cleared.

It requires jStorage by Andris Reinman to work (included with the download package above).

Using the Code

Using jsRemember is quite easy! Just call it like any other JavaScript code like this:

HTML
<head>
...
<script src="js/json2.js"></script>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jstorage.js"></script>
<script src="js/jsRemember.js"></script> 
... 
</head>

And then, all you need to do is get free writing your HTML forms because jsRemember doesn't depend on an element's name, ID, or CSS class to work. Just call it and you are done!

HTML
...
<form>
    Text field: <input type="text" size="30">
</form>
...

See the online demo page here.

That's it! Hope this saves your time dealing with cookies, view state, or something. Enjoy!

Thanks for your time reading this.

Points of Interest

I have not tested it with the newer HTML5 input types. Anyways, it's easy to extend by using the right jQuery selectors. Please see the jQuery selectors API documentation here.

History

  • 07-26-2013: Original tip.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)