Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created June 18, 2013 16:23
Show Gist options
  • Select an option

  • Save jswhisperer/5806861 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/5806861 to your computer and use it in GitHub Desktop.
Enable Form Submit button if any text entered
$('#username').keyup(function() {
$('#submit').attr('disabled', !$('#username').val());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment