I'm trying to track down a bug where I have a bad img tag getting
added to the DOM. I suspect it's some derivative of:

var str = '<img src=\\"http://www.somedomain.com/someimage.jpg\\"; />';
domObj.innerHTML = str;

This is causing the browser to try to download the image from:
http://www.mydomain.com/mypage/%5C%22http://www.somdomain.com/somimage.jpg%5C%22.

The client-side library I'm working with is rather large so
intercepting all possible calls to ".innerHTML =" or
".appendChild(...)" is difficult.

Is there a function in FireBug where I can intercept calls to add
stuff to the DOM to look for this pattern, or perhaps intercept places
where resources are downloaded to trace back to the HTML or DOM
element that caused the download?

Thanks!

-Doug

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