Display value of input in DIV object jQuery
$(function() { $('#someInput').keyup(function() { $('#someDiv').text($(this).val()); }); });