Javascript - Display text as you type
$(document).ready(function() { $('#input').keypress(function() { $('#output').html($(this).val()); }); });