I use this code to add a function for the onchange event:
obj.onchange = function () { calculateExpr(expression,fieldType) }
but how can I add this function without deleting the preceding functions defined in this event?
I tried with += but it doesn't work...
Thanks
obj.onchange = function () { calculateExpr(expression,fieldType) }
but how can I add this function without deleting the preceding functions defined in this event?
I tried with += but it doesn't work...
Thanks
Comment