Skip to content

Instantly share code, notes, and snippets.

@danywalls
Created January 20, 2015 16:48
Show Gist options
  • Save danywalls/175bd52951e243952d6c to your computer and use it in GitHub Desktop.
Save danywalls/175bd52951e243952d6c to your computer and use it in GitHub Desktop.
CheckEmptyFields
function CheckEmptyFields()
{
$(".required").each(function()
{
if($.trim($(this).val()).length == 0)
{
$(this).addClass("warning");
}
else
{
$(this).removeClass("warning");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment