Hi everyone,
I have 3 variables and I was wondering how to join their values and add them to a hidden field,
document.getElementById('my-item-name').value = meat.join("\t");
it works for 1 but when I add the other variable it doesn't work.
document.getElementById('my-item-name').value = meat.join("\t").veg.join("\t").sause.join("\t");
the variables are meat, veg, and sauce.
thanks