Can a hidden element be accessed using javascript getElementByName?
5 answers
getElementsByName(name)name.getElementById(id)id.- getElementsById - .
- getElementsByID, getElementByID - javascript. !
Answering the question:
You can get the identifier of a hidden element if it is hidden on the client side. (You can see it in the generated source.)
document.getElementById('ID').value;
Or something like that.
+1