On Sun, Feb 28, 2010 at 9:47 AM, sam <[email protected]> wrote:
> I'm new to Firebug but I'm sure there is a simple solution to my
> question.
> I wish to remove some HTML from my web page - with Firebug I can
> easily identify the element I need to remove but when it comes to me
> looking through the HTML on my page I cant find the code that Firebug
> has identified.

The DOM inspector inspects the DOM. view > souce shows you the HTML
that the browser received.

The DOM could have been modified by javascript, in which case the HTML
you see in FB is not present in HTML source files.

A server program, such as a jsp include or tag could have generated
the HTML from a program.

If the code you wish to remove can be found by FB DOM inspector, and
cannot be found by view > source, then the code was generated by
script. This could be either innerHTML, createElement/appendChild, or
document.write.

It's hard to say much more without looking at the code, but that
should get you in the right direction (if you haven't already figured
it out).

Garrett

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