views:

360

answers:

1

Is there a way off removing an HTML element by using the DOMDocument class?

+2  A: 

http://us2.php.net/manual/en/domnode.removechild.php

DomDocument is a DomNode.. You can just call remove child and you should be fine.

EDIT: Just noticed you were probably talking about the page you are working with currently. Don't know if DomDocument would work. You may wanna look to use javascript at that point (if its already been served up to the client)

Dave Morgan