How do you parse the onError arguments passed to the handler function?
Posted
by codeninja
on Stack Overflow
See other posts from Stack Overflow
or by codeninja
Published on 2010-03-11T21:18:35Z
Indexed on
2010/03/11
21:19 UTC
Read the original article
Hit count: 225
from some reason only m (Message) is only ever defined when I set
...
handler:function(m,u,l){
var argstr = "[ "+l+"] \n[ "+m+"] \n["+u+"]";
alert("Other Error > "+argstr);
},
...
onerrror = obj.hanlder;
Not sure why.
This is in firefox...
© Stack Overflow or respective owner