Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 20th, 2012  |  syntax: JavaScript  |  size: 0.18 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.                 $("#sendform").click(function() {
  2.                         $("input").each(function() {
  3.                                 if($(this).attr('type') == "text" && $(this).val() == "") {
  4.                                         $(this).addClass('input-error');
  5.                                 }
  6.                         })
  7.                 })