views:

39

answers:

2

Firbug profiler outputs the functions called, but not the arguments/parameters of each function call. Is there any way to get those arguments?

I've dug through the DOM tab for any of the given function calls that I know would have to have had some arguments, but was unsuccessful in pulling out any details.

A: 

Just had a look and couldn't see the functionality, also firebug displays a count of the number of times a function is called in the profiler and doesn't seem to actually log individual calls in the UI, although I may be wrong.

Obvious question, depending what you actually trying to achieve would it not by better to simply log out the args if you need to know what they are?

Jamie
I'm dealing with someone else's scripts. Trying to use Firebug to help me make a bookmarklet, that's all.
purefusion
A: 

Can't the arguments be different every time it's called?

If you're actually looking for performance problems, try this.

If you want to know the function arguments, it will also give you that.

Mike Dunlavey