Show hidden inputs

The code

var 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);

Example

The next form has one hidden input. Click the next link and/or add it to your bookmarks.

Test it

Example
Some inputs: