vote up 4 vote down star

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?

flag

70% accept rate
Which browser? It works fine for me in FireFox. – Hippo Apr 16 at 11:31
That should work, which browser are you using? perhaps IE doesnt like names of "ID" ? – Andrew Bullock Apr 16 at 11:32

5 Answers

vote up 3 vote down check

Not sure of the context but shouldn't you be using getElementById ??

link|flag
Actually, since the post is tagged with ASP.NET MVC, he should be using jQuery (since it's included with the template). $('#ID') works nicely. – tvanfosson Apr 16 at 11:45
Fair enough, didn't notice the tag! I was referring to the use of ByName instead of ById, which is what I thought was causing it to not work. – sbohan Apr 16 at 12:00
vote up 0 vote down
  1. getElementsByName(name) returns an array of elements with the given name property.
  2. getElementById(id) returns the element with the given id property.
  3. There is no getElementsById - because two elements with same id is not allowed.
  4. Nor are getElementsByID, getElementByID - these aren't existing javascript functions. Camelization is required!

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.)

document.getElementById('ID').value;

Or something like this.

link|flag
vote up 1 vote down

id do this:

<% Html.Hidden("ID", 1, new { id = "MyHidden"}) %>

document.getElementById("MyHidden").value
link|flag
vote up 3 vote down

Try this :

<input type="hidden" id="ID" />

for javascript to access it :

var ID = document.getElementById("ID").value;

other way with JQuery :

var ID = $('#ID').val();
link|flag
1  
+1 for jQuery, -1 for Elements instead of Element – tvanfosson Apr 16 at 11:49
yes, I copied from original question, forget it :) – Canavar Apr 16 at 11:52
I've corrected the typo. So now you only get the +1. – tvanfosson Apr 16 at 11:53
I especially like this answer for including jQuery because the question was tagged with MVC. Someone using MVC really ought to be using jQuery. – tvanfosson Apr 16 at 11:54
vote up 1 vote down

Perhaps what you want to be doing is:

var id = document.getElementById('id').value;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.