Firebug 1.1.0b12 Firefox 3.0.1 Scenario: I load two scripts, right next to each other in the <head> of my web page:
<script language="javascript" src="../scripts/ prototype-1.6.0.2.js"></script> <script language="javascript" src="../scripts/windoids.js"></script> For reference, my page's URL is like this: http://localhost:8080/project/secure/ServiceRequestCRUDAction_edit.action?requestId=1 I can view both in the browser directly through the URLs: http://localhost:8080/project/secure/../scripts/windoids.js http://localhost:8080/project/secure/../scripts/prototype-1.6.0.2.js The javascript appears to run in both of them just fine. When I go to firebug's "Script" tab, both files are listed side-by-side under the ../scripts heading. Problem: When I select "windoids.js" to display in the "Script" tab, it looks like it's going to the script - the check mark appears next to windoids.js in the Script tab pulldown - but the script does not appear. Prototype.js displays fine. Obviously, this script not appearing stops me from setting breakpoints in my included code. I don't think there's a syntax problem in windoids.js, because when I inline the javascript in my page it works fine. Possible clue: I think it has something to do with the ".." because when I change the script includes to: <script language="javascript" src="/project/scripts/ prototype-1.6.0.2.js"></script> <script language="javascript" src="/project/scripts/windoids.js"></ script> The "secure" part in the URL is a Struts 2 package namespace, if that matters. Any thoughts? Thanks! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
