I just installed Firebug today, and it doesn't stop at any of the breakpoints that I add. I even tried using a tutorial, http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging. I put the breakpoint on line 7 like it wanted and it still didn't break. I copy/pasted the code at first, then I downloaded the sample file, http://www.esnips.com/doc/f062a0cf-00c6-44ee-a3a7-1867457b69a9/Firebug---Samples. Both ways failed to work.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Javascript Debugging with Firebug</title> <script type="text/javascript"> function doSomething(){ var lbl = document.getElementById('messageLabel'); lbl.innerHTML = "I just did something."; } </script> </head> <body> <div> <div id="messageLabel"></div> <input type="button" value="Click Me!" onclick="doSomething();" /> </div> </body> </html> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
