function addType() {
var catid = document.theform.image_catagorie.options.value;
var catid = "c"+catid; // catid = c475
var output= document.anotherForm.c475.value;
alert(output);
}
Hoe vervang ik in output C475 met de variable catid?
catid is namelijk de ene keer c475 en een andere keer c555 of c159 of... dus ik moet die variable in de var output krijgen zodat de output zich aanpast aan de geselecteerde option van image_categorie.
var catid = document.theform.image_catagorie.options.value;
var catid = "c"+catid; // catid = c475
var output= document.anotherForm.c475.value;
alert(output);
}
Hoe vervang ik in output C475 met de variable catid?
catid is namelijk de ene keer c475 en een andere keer c555 of c159 of... dus ik moet die variable in de var output krijgen zodat de output zich aanpast aan de geselecteerde option van image_categorie.