0

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

Community
  • 1
  • 1
user3487944
  • 259
  • 4
  • 8
  • 22

1 Answers1

2

Have you tried this

$('#button, #paragraph').click(function () {
debugger;
$(this).attr('value', 'Please wait');
});
Matas Vaitkevicius
  • 54,146
  • 29
  • 227
  • 241