While stepping through a script that uses jQuery, I just want to test the code I wrote. I don\'t want to step into the jQuery file -- I\'m not
The answer is rather simple, you just have to refactor the function out. I can't recall
$("div").each(function() { doThis(this); }); function doThis(object) { $(this).hide(); }
Will almost certainly work with a halfway decent debugger.