I’m having an issue with jQuery not traversing to my elements in a specific section of my code where it works everywhere else flawlessly. I am wondering if there a visual tool of sorts (for any browser although I prefer Chrome), that will show me exactly what jQuery is doing as it hops through the elements?
EDIT
So, I should probably make this clearer.
I can use the built in debuggers just fine, however it just shows me the functions that jQuery is calling – not the actual elements that it is looking at. I would like to see what it is actually looking at in the DOM because this code works in 4 other places with exactly the same HTML structure but it keeps failing in the fifth place that it is used.
Hopefully that makes more sense?
FireQuery for Firefox/Firebug could help identify which elements have jQuery events attached. If only it could resolve those to actual functions.