Can I attach any event handlers to HTML hidden? Basically want to run a function with a hiiden control value changes.
Thanks All, ~ck in San Diego
|
|
Can I attach any event handlers to HTML hidden? Basically want to run a function with a hiiden control value changes. Thanks All, ~ck in San Diego
|
||||
|
|
|
Events are only triggered when the user performs the event in the browser, so if it's The only way you would get onchange to work is if you manually trigger onchange in Javascript. A quick example of this:
|
||
|
|
|
|
I used the following code to try and answer your question. Using firefox I observed the following:
Thus, the onchange handler is not going fire when you update the hidden value programatically. Why not write a setter method for the hidden element and only use that to change the value. The setter method could perform any logic you planned on putting in the onchange handler.
|
||
|
|