I am trying to pass values of textbox with same name from JSP to servlet but not able to accomplish this task.
I tried using this in servlet but i only get one text
You do not name the dynamically created input elements (to "words" or "meaning")
var element2 = document.createElement("input"); element2.name = "words"; element2.type = "text"; cell2.appendChild(element2);