Urgent..Anyone please Assisthow to access data from the elements added via javascript dynamically using the jsp code.i am adding empty records on .jsp page using javascript (by calling a below function on click event of button) as :-\[code\]var cell1 = row.insertCell(0); var element1 = document.createElement("input"); element1.type = "text"; element1.value=""; cell1.appendChild(element1); //and so on for 5 columns too\[/code\]Main problem is that i am not able to access these dynamically added textboxes values from my jsp code. (because they have been created dynamically by javascript)Now,i want to save the value from these dynamically added textboxes(in form of table) from the .jsp page to database using jsp...(there can be several rows generated depending upon user input)or else suggest me code to create them dynamically so that i can fetch data from added dynamic textboxes on jsp page.And please ..i don't want to go for servlet concept...wants using jsp only..thnks ....