How to loop through all elements in HTML form and output the value of each element in JavaScript

1 Answer

0 votes
var f = document.getElementById("search-form");
var txt = "";
for (var i = 0; i < f.length; i++) {
    txt += f.elements[i].value + "<br />";
}
document.write(txt);

/*
run

search text
submit

*/

 



answered Jun 12, 2018 by avibootz
edited Jun 14, 2018 by avibootz
...