Does anyone know if attachEvent works in V9? I haven't been able to get it to work. I know in 7.6 we would have code like this which would work:
function test{
obj1 = document.getElementById(fieldName);
obj1.attachEvent('onkeydown', testfunction);
obj1.attachEvent('onkeyup', testfunction2);
}
We would call this function on form load and it would attach the handlers to the field. Does anyone know the V9 equivalent?