jQuery find first empty form field using the :input selector
Find the first empty form field in JavaScript using jQuery with the example below.
var myform = $("form");
var firstEmptyField = myform.find(":input[value='']:visible").not("button").filter(":first")
console.log("the first empty field: ", firstEmptyField);
1 comment
Very nice site!
Leave a Reply