user4239503
user4239503

Reputation:

jquery selector on multiple id

Hi have a html code like this

<input type="text" value="quantita" id="quantita" name="quantita">
<input type="text" value="prodotto" id="prodotto" name="prodotto">
<input type="text" value="prezzo" id="prezzo" name="prezzo">

Now I'm trying to do a jquery code that add a button if the value of all these id is different from NULL

so I do this

var list = $("#prezzo", "#quantita", "#prodotto").val();
if (list!="")
{...do this...}
else
{....do nothing...}

but it doesn't work

Upvotes: 0

Views: 6781

Answers (2)

adeneo
adeneo

Reputation: 318182

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 ?

Upvotes: 3

Diptox
Diptox

Reputation: 1809

$("#prezzo,#quantita,#prodotto").each(function()
{
   if ($(this).val() !="" )
   {}
   else
   {}
});

Upvotes: 1

Related Questions