I am trying to set dynamically innerHTML for value tag in IE.

The output I expect is this.

<input type="hidden" >a0FQ0000009rJfCMAU</input>

I tried innerHTML in IE but it was not working since it is supported for INPUT element. So, I tried the following out of desperation.

myElementId.setAttribute("value",textNodeId);

Unfortunately this is not what I want.

<input type="hidden" value="a0FQ0000009rJfCMAU">

Please advise.

link|improve this question

1  
Do <input> elements even support CDATA? I think not. – Linus Kleen Nov 21 '11 at 12:29
2  
If the input is hidden, why does it need to be innerHTML and not value? – pdknsk Nov 21 '11 at 12:30
@pdknsk : Good question which i don't have an answer.. the piece of code i've given is a sample of an existing framework/library. – Bragboy Nov 21 '11 at 12:32
1  
Why are you wanting to do this? The hidden type of input element does not support innerHTML, nor should it. a hidden element should always have it's value in the value field which you can access by using myElementId.value(textNodeId); – kamui Nov 21 '11 at 12:33
feedback

2 Answers

up vote 3 down vote accepted

If you check the input element's specification, you see that its Content Model should be empty. Thus, what you try to find is logically invalid HTML.

See here.

link|improve this answer
So that means it can set the value by using document.elementById().value? – NavSoft Nov 21 '11 at 12:38
thank you for the answer.. – Bragboy Nov 21 '11 at 15:53
feedback

If you want to change or set the value of input tag dynamically, you have to first define its name or id and then in javascript you can set it like

var txt = document.getElementById('yourtext');
txt.value = 'new value';

I hope this helps you.

link|improve this answer
1  
kindly give the reason for down vote – Naved Nov 21 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

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