Trigger action on programmatic change to an input value

if the only problem with your solution is breaking of change event on value set. thn you can fire that event manually on set. (But this wont monitor set in case a user makes a change to the input via browser — see edit bellow) <html> <body> <input type=”hidden” id=’myInput’ /> <input type=”text” id=’myInputVisible’ /> … Read more

JavaScript version in HTA

The used JavaScript (or JScript) version depends on three things: installed Interner Explorer version, used document type declaration (DTD) and x-ua-compatible meta tag. Though HTAs are run by mshta.exe, IE provides the JavaScript and rendering engines to applications, hence everything said later about JS versions, stands for box-models, positioning, CSS etc, and available APIs and … Read more