I\'m trying to figure out how to copy a users text input in one form field to another. Specifically, when someone fills in their email address in the contact form, it will b
use keyup and change both.
$("#boxx").on('keypress change', function(event) { var data=$(this).val(); $("div").text(data); });
here is the example http://jsfiddle.net/6HmxM/785/