I have Hidden field like
<%= Html.Hidden("ID", 1) %>
and in javascript i want a value of that field by
var ID = document.getElementsByName("ID").value;
I can't access it!
is there any other way?
|
|
I have Hidden field like
and in javascript i want a value of that field by
I can't access it! is there any other way?
|
||||
|
|
|
Not sure of the context but shouldn't you be using getElementById ?? |
||||
|
|
|
Answering the question: You can get the id of a hidden element if it is hidden client side. (You can see it in the generated source.)
Or something like this. |
||
|
|
|
|
id do this:
|
||
|
|
|
|
Try this :
for javascript to access it :
other way with JQuery :
|
||||||||||
|
|
|
Perhaps what you want to be doing is:
|
|||
|
|