/ Published in: Other
Expand |
Embed | Plain Text
$("form").on("blur", ".check", function(){ $this = $(this); if($this.val()!=""){ $this.removeClass("error"); } else { $this.addClass("error"); } });
You need to login to post a comment.
$("form").on("blur", ".check", function(){ $this = $(this); if($this.val()!=""){ $this.removeClass("error"); } else { $this.addClass("error"); } });
You need to login to post a comment.