Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zirosas/5573033 to your computer and use it in GitHub Desktop.
Save zirosas/5573033 to your computer and use it in GitHub Desktop.
Display value of input in DIV object jQuery
$(function() {
$('#someInput').keyup(function() {
$('#someDiv').text($(this).val());
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment