What is the correct way to hide an input text box? The following appears to work to work in all browsers except Internet Explorer. I am testing on IE8.
var field = document.getElementsByTagName("input")[0];
field.type = 'hidden';
For the record the following does not work:
var field = document.getElementsByTagName("input")[0];
field.style.display = 'none';
Neither does this work:
var field = document.getElementsByTagName("input")[0];
field.setAttribute("type", "hidden");
does not workis not a very precise problem description. Are you getting an error message, does your computer crash, do apples start to fall from the sky, ...? Also a complete code snippet containing the HTML and demonstrating the problem would be nice. – Darin Dimitrov Sep 20 '10 at 7:14