Skip to content

Instantly share code, notes, and snippets.

@mroien
Created September 2, 2016 03:49
Show Gist options
  • Save mroien/dbf409bdb195d0ef4585be78eeb5c06a to your computer and use it in GitHub Desktop.
Save mroien/dbf409bdb195d0ef4585be78eeb5c06a to your computer and use it in GitHub Desktop.
Set all id's from input into local Storage
$('#submit').on('click', function(){
$('input').each(function(){
var id = $(this).attr('id');
var value = $(this).val();
localStorage.setItem(id, value);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment