Outputs this only in IE8....
How do you cause that to be ‘output’? Normally you only see propDescName
(and submitName
) when debugging the DOM in the developer tools. It is an internal detail of IE8-running-in-IE7-mode's implementation of the name
attribute, that should not normally be visible to scripts.
(Setting the name
attribute has notorious problems in IE up to version 7, so it's generally best avoided unless you really know what you're doing. In particular, though it correctly sets the ‘control name’ used to submit the field value, it won't affect radio-input grouping, frame targeting, or update the form
[.elements
] lookup.)