Skip to content

Instantly share code, notes, and snippets.

@gaetanm
Created August 21, 2013 15:03
Show Gist options
  • Save gaetanm/a6d0c9f584c396cad7be to your computer and use it in GitHub Desktop.
Save gaetanm/a6d0c9f584c396cad7be to your computer and use it in GitHub Desktop.
// doesn't work
$("input").each(function()
{
if ($(this).val() == '' && $(this).attr('name') != "comment")
{
empty = true;
}
}
// works
$("input").each(function(){
if ($(this).val() == '')
{
if ($(this).attr('name') != "comment") empty = true;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment