I have 2 chekboxes on a page. There are wrapped in a table cell each within their own row. Doing a document.getElementById('chk1_FEAS~1005') returns the element but document.getElementById('chk5_STG2~1005') is null. For what reasons could this be happening? (I'm testing in IE 8).
<input id="chk1_FEAS~1005" value="JobStages###StageCode~JobCode###FEAS~1005" onclick="addRemoveRow(this.value,this.checked)" style="border-width:0px;padding:1px;margin:0px;height:14px;" type="checkbox" />
<input id="chk5_STG2~1005" value="JobStages###StageCode~JobCode###STG2~1005" onclick="addRemoveRow(this.value,this.checked)" style="border-width:0px;padding:1px;margin:0px;height:14px;" type="checkbox" />
I have 2 chekboxes on a page. There are wrapped in a table cell each within their own row. Doing a document.getElementById('chk1_FEAS~1005') returns the element but document.getElementById('chk5_STG2~1005') is null. For what reasons could this be happening? (I'm testing in IE 8).
<input id="chk1_FEAS~1005" value="JobStages###StageCode~JobCode###FEAS~1005" onclick="addRemoveRow(this.value,this.checked)" style="border-width:0px;padding:1px;margin:0px;height:14px;" type="checkbox" />
<input id="chk5_STG2~1005" value="JobStages###StageCode~JobCode###STG2~1005" onclick="addRemoveRow(this.value,this.checked)" style="border-width:0px;padding:1px;margin:0px;height:14px;" type="checkbox" />
Share
Improve this question
asked Aug 12, 2009 at 14:19
user48408user48408
3,38211 gold badges43 silver badges60 bronze badges
1
- Providing an HTML document, with failing javascript in the HEAD tag, would help (create a trivial example from your real code, if need be). – lance Commented Aug 12, 2009 at 21:27
4 Answers
Reset to default 11Your Id has invalid characters:
ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").
More information here.
document.getElementById('hk5_STG2~1005')
should be
document.getElementById('chk5_STG2~1005')
:-)
Looking at your sample it is a typo, the second item should be, document.getElementById('chk5_STG2~1005')
Also, I would remend removing the ~ character as it is invalid for an id.
For what it's worth, I have similar problems using document.getElementById
on checkboxes in IE8. Try adding this tag to your head section :-
<meta http-equiv="X-UA-Compatible" content="IE=7" />
This will force IE8 into IE7 patibility mode. It works for me as a workaround until I find-out what's really up.