zirosas
5/14/2013 - 1:49 AM

Display value of input in DIV object jQuery

Display value of input in DIV object jQuery

$(function() {
    $('#someInput').keyup(function() {
        $('#someDiv').text($(this).val());
    });
});