Skip to content

Instantly share code, notes, and snippets.

@i5ar
Created May 16, 2020 16:24
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 i5ar/9da982ea22308430d78cb8a483398f90 to your computer and use it in GitHub Desktop.
Save i5ar/9da982ea22308430d78cb8a483398f90 to your computer and use it in GitHub Desktop.
Update user field from email
jQuery(document).ready(function($) {
$("input#user_email").keyup(function () {
console.log(this.value);
$("input#user_login").val(this.value.split('@')[0])
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment