7

I'm going crazy about this. I found a plain JavaScript solution for my problem:

<script type="text/javascript" language="JavaScript" src=""> 

s1 = new String(catwebformform43575.EmailAddress.value)

function changeVal() {

    document.catwebformform43575.Username.value = catwebformform43575.EmailAddress.value;

}

</script>

<BR>
<BR>
<form name="catwebformform43575">
 <input type="text"id="EmailAddress" name="EmailAddress" value="" onkeyup = "changeVal()">
 <input type="text" id="Username" name="Username" value="">

but I need a jQuery solution...Can anybody help?

1 Answer 1

20
$("#EmailAddress").keyup(function(){
    $("#Username").val(this.value);
});

See a working demo

Sign up to request clarification or add additional context in comments.

1 Comment

@rahul, is there any other way to handle without keyup and key down?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.