On Aug 18, 3:03 pm, aaaronandrews <[email protected]> wrote: > I'm new to debugging javascript, and here's my noob question -- I've > been googling it on and off for about a week with no success. > > I'm trying to debug javascript that's not attached as a separate > script, but contained in the actual HTML document. > > I understand that this is probably not the right way to do things, but > it's a necessary step for what I'm trying to do/learn at this time. You can use Firebug to debug embedded scripts.
Here is an example (one of our online test cases) http://getfirebug.com/tests/content/branches/1.9/net/601/issue601.html 1) Open Firebug UI (press F12) 2) Enable the Script panel 3) Reload the page 4) Create a breakpoint at line 37 5) Press the button on the page 6) Debug! Honza -- 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.
