Skip to content

Instantly share code, notes, and snippets.

@yaojingguo
Last active August 28, 2015 14:21
Show Gist options
  • Save yaojingguo/772c53c3c84788a626e8 to your computer and use it in GitHub Desktop.
Save yaojingguo/772c53c3c84788a626e8 to your computer and use it in GitHub Desktop.
$('form#searchForm').submit(function() {
$(':input', this).each(function() {
var val = $(this).val();
if (typeof val === 'string') {
$(this).val(val.trim());
}
this.disabled = !val;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment