Clone value of input field in real time

HTML
<input id="original" type="text" placeholder="Type Something"> <input id="clone" type="text" disabled>
CSS
body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; height: 100vh; }
JAVASCRIPT
$("#original").keyup(function() { $("#clone").val( this.value ); });
Expand for more options Login