I\'m trying to develop a JS function that creates a new row each time a new record is added to a database (from a different program that checks periodically). Right now I ca
After
textnode2 = document.createElement("select");
you need to do something like
var op = new Option(); op.value = 1; op.text = "First entry"; textnode2.options.add(op);
and repeat for your desired entries.