Hi. I need a good javascript tool or debugger that can show me what js functions are being used when I click a certain link in a web page. Thank you and waiting for your replies.
You just can't beat Firebug! Also, a quick way to see what scripts are executing is to insert an alert to notify you! function xyz(){ alert('xyz'); ...some code... }