Guest User

Untitled

a guest
Oct 22nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document).on('focusin', 'input', function(){
  2. console.log("Saving value " + $(this).val());
  3. $(this).data('val', $(this).val());
  4. }).on('change','input', function(){
  5. var prev = $(this).data('val');
  6. var current = $(this).val();
  7. console.log("Prev value " + prev);
  8. console.log("New value " + current);
  9. });
Add Comment
Please, Sign In to add comment