I have created a webpage using HTML and jQuery. And I am using webpy framework. I have two text boxes in my html/webpage. I want to display the contents of first textbox in second textbox meanwhile I type in first textbox. How can I implement this using jQuery.
Share
Use jQuerys Change event handler (search for jQuery Change for full docs)
Something like this should be what you are after
EDIT – Even though this was accepted answer check out the answer provided by @Huske for a better way, both work but I thought I should point out his alternative.