I cannot instantiate HtmlHiddenInput and use the appendChild method to the form object, because the former has no constructor. Is there a better way rather than doing that in JavaScript? I'd like to keep javascript disabled to save on resources.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Ideally I'd like to be able to write (where f is an HtmlForm, p an HtmlPage, b a WebClient):
But since HtmlHiddenInput cannot be instantiated I had to fall-back on JavaScript, which is slower and uglier:
IMHO sometimes too strict constraints get in the way. I do not see a good reason why instantiating an HtmlHiddenInput should be forbidden. |
||||
|
|
This is the official way to do it:
|
|||
|
|