Phoenix – A jQuery plugin that saves form field values or state to Local Storage via HMTL5 Web Storage APIs
Lost connections, crashed browsers, broken validations – all these forms data user had filled in with efforts gets lots adds end user frustration.
Phoenix is a jQuery plugin that saves data entered inside form fields locally and restores it in case the browser crashes or the page is refreshed accidentally.
Phoenix keeps bad things away from your forms. It is very tiny – 3Kb (1Kb gziped), but powerful. Phoenix saves form fields values, checkboxes and radio button states to your browser Local Storage using HTML5 Web Storage API.
If at any point the Internet connection goes offline, the browser crashes, the page is refreshed or the form doesn’t validate, the user filling in the form can restore the form to his last version instead of re-filling all the form fields again.
Usage:
<form id=’stored-form’>
<input type=”text” class=”phoenix-input” />
<textarea type=”text” class=”phoenix-input”></textarea>
</div>
$(‘.phoenix-input’).phoenix()
$(‘#my-form’).submit(function(e){
$(‘.phoenix-input’).phoenix(‘remove’)
})
Options
You can pass an options object on Phoenix initialization.
$('.phoenix-input').phoenix({ namespace: 'phoenixStorage', webStorage: 'sessionStorage', maxItems: 100, saveInterval: 1000, clearOnSubmit: '#stored-form', keyAttributes: ['tagName', 'id'] })
Possible options are:
namespace
– webStorage namespace (if you don’t like default) – string:phoenixStorage
,webStorage
– method used; sessionStorage or localStorage, (localStorage by default) – string:localStorage
,maxItems
– max items to store (every form field is an item) – integer:100
,saveInterval
– how often to save field values to localStorage (milliseconds). If it’s negative, field will only be saved when invokingsave
method – integer:1000
clearOnSubmit
– form selector (when you submit this form Phoenix will clean up stored items) – string:false
keyAttributes
– define which element attributes will be used to find the correct element to populate – array:['tagName', 'id', 'name']
Methods
When Phoenix initialized you can use API methods to manage it. Call method with $(selector).phoenix('methodName')
, where methodName
is one of these:
start
– start saving timer, it will save field values everysaveInterval
ms (saveInterval is an option as you remember)stop
– stop saving timerload
– load value from stored item to fieldsave
– save value from field to stored itemremove
– stop saving timer and remove stored item from localStorage
NB Phoenix doesn’t remove stored item from localStorage by itself. So don’t forget to call remove
event when you don’t need filled in form field values anymore or use clearOnSubmit
option with form id.
Events
Every Phoenix method call fires an event you can bind to. For example
$('.phoenix-input').bind('phnx.loaded', function (e) { console.log('Data loaded... ')})
Events naming is very obvious, so try them out
- phnx.started
- phnx.stopped
- phnx.loaded
- phnx.saved
- phnx.removed
Compatibility
Browsers
Any compatible with HTML5 Web Storage API browser works well with Phoenix.
- Chrome 4+
- Firefox 3.5+
- Safary 4+
- Opera 10.5+
- IE 8+
- All modern mobile browsers (except Opera Mini)
Website: https://github.com/kugaevsky/jquery-phoenix
Thanks for reading,
Nabeel Shahid.
Credits: Nick Kugaevsky
Recent Comments