input
svar e = document.getElementsByTagName('input');
for(i = 0; i < e.length; i++) {
if (e[i].type == 'hidden') {
e[i].parentNode.insertBefore(document.createTextNode(e[i].name + ': '), e[i]);
e[i].type = 'text';
}
}
void(0);
The next form has one hidden input
. Click the next link and/or add it to your bookmarks.