Answers for "jquery to copy two input fields into one with a space between"

0

jquery to copy two input fields into one with a space between

jQuery(function($) {
  var $firstname = $('input[name="firstname"]');
  var $lastname = $('input[name="lastname"]');
  var $fullname = $('input[name="fullname"]');

  $firstname.add($lastname).keyup(function() {
    $fullname.val($firstname.val() + ' ' + $lastname.val());
  });
});
Posted by: Guest on August-21-2020

Code answers related to "jquery to copy two input fields into one with a space between"

Code answers related to "Javascript"

Browse Popular Code Answers by Language