Skip to content

Instantly share code, notes, and snippets.

@luc4leone
Created January 8, 2019 05:33
Show Gist options
  • Save luc4leone/55862332e257e6c41fa1922bbcf4dbfb to your computer and use it in GitHub Desktop.
Save luc4leone/55862332e257e6c41fa1922bbcf4dbfb to your computer and use it in GitHub Desktop.
Todo mvc js edit method
edit: function (event) {
var labelEl = event.target;
var liEl = labelEl.closest('li');
var inputEl = liEl.lastElementChild;
var len = inputEl.value.length;
liEl.className = 'editing';
inputEl.focus();
inputEl.setSelectionRange(len, len);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment