Advertisement
Guest User

name_autogen

a guest
Jan 27th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const nameField = document.querySelector("#elInput_applications_name");
  2. if (nameField) {
  3.   const firstName = document.querySelector("#elInput_perscom_applicationfield_20");
  4.   const lastName = document.querySelector("#elInput_perscom_applicationfield_21");
  5.   const callback = e => { nameField = `${firstName.value} ${lastName.value}`; };
  6.   [firstName, lastName].map(e => e.addEventListener("blur", callback));
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement