Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
A handy little script that lets users save and reuse form data.
Download Form Saver / View the demo
Compiled and production-ready code can be found in the dist
directory. The src
directory contains development code.
<link rel="stylesheet" href="dist/css/form-saver.css">
<script src="dist/js/form-saver.js"></script>
<form id="form-id">
<div>
<label>Text Input</label>
<input name="input" type="text">
</div>
<div>
<label>Text Input to Ignore</label>
<input data-form-no-save name="input-ignore" type="text">
</div>
<div>
<label>
<input type="checkbox" name="checkbox1" value="1">
Checkbox 1
</label>
</div>
<div>
<label>
<input type="checkbox" name="checkbox2" value="2">
Checkbox 2
</label>
</div>
<div>
<label>
<input type="radio" name="radioset" value="radio1">
Radio 1
</label>
</div>
<div>
<label>
<input type="radio" name="radioset" value="radio2">
Radio 2
</label>
</div>
<div>
<select name="select">
<option>Select 1</option>
<option>Select 2</option>
<option>Select 3</option>
</select>
</div>
<div>
<textarea name="textarea"></textarea>
</div>
<div class="form-saver">
<div data-form-status></div>
<div>
<button data-form-save="#form-id">
Save Form Data
</button>
<button data-form-delete="#form-id">
Delete Form Data
</button>
</div>
</div>
</form>
Create your forms as normal. All forms must have an ID, all form fields must have a name attribute, and checkboxes and radio buttons must also have a value
attribute, or they won't work properly with Form Saver. Use the [data-form-no-save]
data attribute to omit a form field from being saved.
You can use a
elements instead of buttons to save and delete data:
<a data-form-save="#form-id" href="#">
Save Form Data
</a>
<a data-form-delete="#form-id" href="#">
Delete Form Data
</a>
<script>
formSaver.init();
</script>
In the footer of your page, after the content, initialize Form Saver. And that's it, you're done. Nice work!
You can install Form Saver with your favorite package manager.
npm install cferdinandi/form-saver
bower install https://github.com/cferdinandi/form-saver.git
component install cferdinandi/form-saver
If you would prefer, you can work with the development code in the src
directory using the included Gulp build system. This compiles, lints, and minifies code.
Make sure these are installed first.
cd
into your project directory.npm install
to install required files.gulp
manually compiles files.gulp watch
automatically compiles files when changes are made and applies changes using LiveReload.Form Saver includes smart defaults and works right out of the box. But if you want to customize things, it also has a robust API that provides multiple ways for you to adjust the default options and settings.
You can pass options and callbacks into Form Saver through the init()
function:
formSaver.init({
selectorStatus: '[data-form-status]', // Selector for the status container (must be a valid CSS selector)
selectorSave: '[data-form-save]', // Selector for the save button (must be a valid CSS selector)
selectorDelete: '[data-form-delete]', // Selector for the delete button (must be a valid CSS selector)
selectorIgnore: '[data-form-no-save]', // Selector for fields to ignore (must be a valid CSS selector)
deleteClear: true, // Boolean. Reload the page after deleting form data.
saveMessage: 'Saved!', // Message to display when form data is successfully saved.
deleteMessage: 'Deleted!', // Message to display when form data is successfully deleted.
saveClass: '', // Class to add to save success message <div>
deleteClass: '', // Class to add to delete success message <div>
initClass: 'js-form-saver', // Class added to `<html>` element when initiated
callbackSave: function ( btn, form ) {}, // Function to run after a form is saved
callbackDelete: function ( btn, form ) {}, // Function to run after a form is deleted
callbackLoad: function ( form ) {} // Function to run after form data is loaded from storage
});
Note: If you change the selectorSave
or selectorDelete
, you still need to include the [data-form-save]
and [data-form-delete]
attributes in order to pass in the selector for the form.
Form Saver lets you override global settings on a form-by-form basis using the [data-options]
data attribute:
<button
data-form-save
data-options='{
"saveMessage": "Saved!",
"saveClass": "alert-success"
}'
>
Save Form Data
</button>
<button
data-form-delete
data-options='{
"deleteMessage": "Deleted!",
"deleteClass": "alert-success",
"deleteClear": true
}'
>
Delete Form Data
</button>
Note: You must use valid JSON in order for the data-options
overrides to work.
You can also call Form Saver events in your own scripts.
Save a form's data.
formSaver.saveForm(
btn, // Node that saves the form. ex. document.querySelector('#save-btn')
formID, // ID of the form to save. ex. #form-id
options, // Classes and callbacks. Same options as those passed into the init() function.
event // Optional, if a DOM event was triggered.
);
Example
var options = { saveMessage: 'Your data has been saved. Booya!' };
formSaver.saveForm( null, '#form', options );
Delete a form's data.
formSaver.deleteForm = function (
btn, // Node that deletes the form. ex. document.querySelector('#delete-btn')
formID, // ID of the form to save. ex. #form-id
options, // Classes and callbacks. Same options as those passed into the init() function.
event // Optional, if a DOM event was triggered.
);
Example
var btn = document.querySelector('[data-form-delete]');
var formID = btn.form.id;
formSaver.deleteForm( btn, formID );
Load a form's saved data.
formSaver.loadForm = function (
form, // Form node to delete. ex. document.querySelector('#form')
options // Classes and callbacks. Same options as those passed into the init() function.
);
Example
var forms = document.forms;
for (var i = forms.length; i--;) {
var form = forms[i];
formSaver.loadForm( form );
}
Destroy the current formSaver.init()
. This is called automatically during the init
function to remove any existing initializations.
formSaver.destroy();
Form Saver works in all modern browsers, and IE 10 and above. You can extend browser support back to IE 9 with the classList.js polyfill.
Form Saver is built with modern JavaScript APIs, and uses progressive enhancement. If the JavaScript file fails to load, or if your site is viewed on older and less capable browsers, save and delete data buttons will not be displayed.
In lieu of a formal style guide, take care to maintain the existing coding style. Don't forget to update the version number, the changelog (in the readme.md
file), and when applicable, the documentation.
The code is available under the MIT License.
FAQs
Save and reuse form data
We found that form-saver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.