jquery selector on multiple id

You could do it like this instead

var list = $("#prezzo, #quantita, #prodotto").filter(function() {
    return this.value === "";
}).length === 0;

if (list) { // All values set

assuming you meant the value is an empty string, as in no value set, and not actually the string NULL ?

Leave a Comment