Reputation: 277
I cannot set BreakPoint in Firebug script window in Chrome...
http://postimg.org/image/ivm2jss0d/
Similar Link : How can I set breakpoints in an external JS script in Firebug
Can Firebug set breakpoints in external JavaScript files?
they suggest :
1.Click on the 'all' drop down in the upper left hand corner above the script code content window.
2.Select 'Show Static Scripts'.
I cannot find these options .. I can see only 1 drop down which has my script .
Another Suggestion.. Use debugger ;
Not working in my case
Please Suggest
Upvotes: 0
Views: 1564
Reputation: 61469
Have you tried this
$('#button, #paragraph').click(function () {
debugger;
$(this).attr('value', 'Please wait');
});
Upvotes: 2