fires when the native "onkeyup" event is triggered
inp | object | the input element that fires the event |
ev | object | the event object |
name | string | item name |
value | string | item value (for radios only) |
myForm.attachEvent("onKeyUp",function(inp, ev, name, value){
//your code here
});
Back to top