You missed as step between 3.2 and 3.3: reload the page. Does that solve your problem? jjb
On Jul 20, 8:19 am, Ex_Soft <[email protected]> wrote: > > chances are you have a script error before it gets to the breakpoint. > > 1. > <html> > <head> > <title>Test Firebug</title> > <script type="text/javascript"> > <!-- > function DoIt() > { > alert('DoIt()'); > > } > > // --> > </script> > </head> > <body> > <h1>Test Firebug</h1> > <hr /> > <input type="button" id="btnDoIt" name="btnDoIt" value="DoIt!" > onclick="DoIt()" /> > </body> > </html> > > 2. Mozilla FireFox->Tools->Error Console is empty. > > 3. > 3.1. Load page > 3.2. Open Firebug > 3.3. Set breakpoint at line# 8 (alert('DoIt()');) 8 is gray > 3.4. Push on button "DoIt!" (Firebug don't stop at breakpoint) > 3.5. Reload page (8 is green+bold) > 3.6. Push on button "DoIt!" Firebug stop at breakpoint. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/firebug?hl=en -~----------~----~----~----~------~----~------~--~---
