Click here to Skip to main content
15,885,278 members
Articles / Web Development / HTML
Tip/Trick

jsRemember

Rate me:
Please Sign up or sign in to vote.
4.67/5 (4 votes)
11 Aug 2013CPOL1 min read 16.5K   202   10   5
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)


Written By
Software Developer
Brazil Brazil
MCPS | MCSA | MS | MCSD | Software Engenieer Student | Startups Lover | Small-Cap Stock Investor | Small Shark

Comments and Discussions

 
SuggestionSuggestion for improvement Pin
Celso Jr25-Aug-13 8:07
Celso Jr25-Aug-13 8:07 
QuestionCan some form input be saved after submit, in case of a bad CAPTCHA? Pin
Dan Knauss22-Aug-13 12:09
Dan Knauss22-Aug-13 12:09 
AnswerRe: Can some form input be saved after submit, in case of a bad CAPTCHA? Pin
Celso Jr25-Aug-13 8:03
Celso Jr25-Aug-13 8:03 
Questionneed help Pin
Tridip Bhattacharjee29-Jul-13 4:43
professionalTridip Bhattacharjee29-Jul-13 4:43 
AnswerRe: need help Pin
Celso Jr29-Jul-13 7:05
Celso Jr29-Jul-13 7:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.