Skip to content

Instantly share code, notes, and snippets.

@nit3ch
Created May 10, 2013 07:19
Show Gist options
  • Save nit3ch/5552908 to your computer and use it in GitHub Desktop.
Save nit3ch/5552908 to your computer and use it in GitHub Desktop.
A CodePen by Nitesh Kumar. Real time greeting. - Hello world app for jquery.
Enter your name :
<input id="name" type="text">
<h2 id='greeting'></h2>
$(function() {
$('#name').keyup(function() {
$('#greeting').text('hello ' + $('#name').val() + ' !');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment