Skip to content

Instantly share code, notes, and snippets.

@amitmerchant1990
Created November 15, 2016 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amitmerchant1990/6a4aee82dd4e54296a5c36c44496e5a2 to your computer and use it in GitHub Desktop.
Save amitmerchant1990/6a4aee82dd4e54296a5c36c44496e5a2 to your computer and use it in GitHub Desktop.
// Commented out for brevity
$(document).ready(function(){
$('#note').bind('input propertychange', function(){
localStorage.setItem("note", $(this).val());
});
if(localStorage.getItem("note") && localStorage.getItem("note")!=''){
var noteItem = localStorage.getItem("note")
$('#note').val(noteItem);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment