fires when data in some input was changed
| name | string | item name |
| value | string|number | item value |
| state | boolean | checked/unchecked (for checkboxes, radio and btn2state controls only) |
myForm.attachEvent("onChange", function (name, value, state){
// your code here
});
Back to top