I don't know why this is, but after 6 hours of debugging, I finally
narrowed it down to Firebug Lite, as once I removed it from project,
everything works again.

Take this, for example:

$.ajax({
    url: somefile.php,
    success: function(response) {
        console.log("Succeeded!")
    }
});

somefile.php will still execute, but the success function will never
fire because of an error.  If I remove Firebug Lite and use IE8's
Developer Tools, the console will output "Succeeded!" but not so with
Firebug Lite, which actually breaks the page's functionality as none
of the code inside the success callback function is run.



-- 
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.

Reply via email to