Skip to content

Instantly share code, notes, and snippets.

@cohitre
Created May 4, 2009 07:31
Show Gist options
  • Save cohitre/106358 to your computer and use it in GitHub Desktop.
Save cohitre/106358 to your computer and use it in GitHub Desktop.
(function($) {
var bind_help = function (form, field, message) {
var displayHelp = $.trim(field.val()).length===0;
form.bind('submit', function () {
return displayHelp;
});
field.blur(function () {
displayHelp = $.trim(field.val()).length===0;
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment