With the Internet Explorer developer tools, I can inspect the value of an element’s click method. IE reports attached to it is an object (shows {…}). However, I cannot see into the object (anonymous function). Is there a way to see the contents of this?
With the Internet Explorer developer tools, I can inspect the value of an element’s
Share
Have you tried
the_function.toSource()or any other “var_dump for JavaScript” equivalent?http://snippets.dzone.com/posts/show/759
http://phpjs.org/functions/var_dump:604