You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
297 B

4 years ago
  1. var em = document.getElementById("registration_user_email");
  2. if(!em)
  3. em = document.getElementById("user_email");
  4. var ap = em.nextSibling;
  5. em.addEventListener("blur", function( event ) {
  6. if(ap.style.display != 'none' && em.value) {
  7. em.value+=ap.innerText;
  8. ap.style.display = 'none';
  9. }
  10. });