I know this is an old thread, but for others looking, the above solutions are maybe not as good as the following, instead of checking change
events, check the input
events.
$("#myInput").on("input", function() {
// Print entered value in a div box
$("#result").text($(this).val());
});