QUESTION: When the Firebug Script Debugger is enabled, and I open my documents with Firefox, my Console opens to the following block of code (see JAVASCRIPT below), my page fails to load, and an error message is produced (see ERROR MESSAGE below). If I reload the page with the Console still open, the page appears as one would expect with Firebug turned off. This same phenomenon occurs for both JavaScript Library v1.3.2 and jQuery 1.2.2. There are no breakpoints set.
What is going on? JAVASCRIPT 643 data: function( elem, name, data ) { 643 elem = elem == window ? 644 windowData : 645 elem; 646 647 var id = elem[ expando ]; 648 649 // Compute a unique ID for the element 650 if ( !id ) 651 id = elem[ expando ] = ++uuid; 652 653 // Only generate the data cache if we're 654 // trying to access or manipulate it 655 if ( name && !jQuery.cache[ id ] ) 656 jQuery.cache[ id ] = {}; 657 658 // Prevent overriding the named cache with undefined values 659 if ( data != undefined ) 660 jQuery.cache[ id ][ name ] = data; 661 662 // Return the named cache data, or the ID for the element 663 return name ? 664 jQuery.cache[ id ][ name ] : 665 id; 666 }, ERROR MESSAGE [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: file:///Applications/Firefox.app/Contents/MacOS/components/FeedProcessor.js :: FP_onStartRequest :: line 1440" data: no] data()()jquery.js (line 664) add()()jquery.js (line 1836) one()()jquery.js (line 2195) each()()jquery.js (line 728) each()()jquery.js (line 155) one()()jquery.js (line 2191) bind()()jquery.js (line 2185) (?)()()jquery.js (line 2368) jquery.js()()jquery.js (line 1) [Break on this error] jQuery.cache[ id ][ name ] : Roddy