Can I view custom methods in the IE developer toolbar's watch window?
For example, if I have a global function named hello, can I locate it within the DOM?
function hello() {
alert("hello");
}
If so, where in the watch window would I find them? When watching the window object and navigating to "methods," only built-in methods are visible, not my new function hello().
EDIT:
I am asking this question because I have multiple nested framesets* that require access to JavaScript methods from different hierarchy levels. Instead of manually searching for the correct level in the hierarchy each time, I was hoping to browse through them.
This general query is about the capability of browsing methods using debugging tools (specifically the IE developer toolbar in my case).
*I feel the need to mention my use of framesets here before potentially sparking an off-topic discussion. While I acknowledge that framesets can be cumbersome, I have no choice but to work with legacy code that includes them :-(