I'm getting an error trying to use the XHR watching in Firebug Lite under Safari 4. Here is the relevant portion of my code:
<script src="js/jquery-1.3.2.min.js"></script> <script type='text/javascript' src='http://getfirebug.com/releases/ lite/1.2/firebug-lite-compressed.js'></script> <script type='text/javascript'> $(document).ready(function() { $.ajaxSetup({processData: false, xhr: function() { var req = new XMLHttpRequest(); firebug.watchXHR(req); return req; } }); $.ajax({url:"https://pb.uccu.com/UCCU/login.aspx", success:function (data) { etc. etc. I'm getting an error when safari tries to parse a portion of the file: TypeError: Result of expression 'firebug.el.settings' [undefined] is not an object. firebug-lite-compressed.js line 18 Any ideas? Am I doing it wrong? Thanks, Carl --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
