php-html-parser icon indicating copy to clipboard operation
php-html-parser copied to clipboard

An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.

Results 75 php-html-parser issues
Sort by recently updated
recently updated
newest added

I need this to change the inner HTML of a paragraph...

enhancement

Good evening, is it possible to search for class + attribute? Example: `.className[data-point]`

How do I setAttribute to a checkbox to turn it into unchecked state?

Hi there, Great library — appreciate the effort on this. I'm running into a small issue where the order of selectors determines the order of the returned nodes. e.g; `$dom->find(...

Would it be possible to add an option to provide a number (in seconds or milliseconds) that signifies the amount of time to delay a parse? This will allow additional...

Hi, As currently `PHPHtmlParser\DOM` itself has the `__toString()` method and it is the only access to gather the content after processing it, can we add it to the publicly visible...

So the parse seems to be having problems with this comment. ``` ``` After parse it looks like this ``

Hi there, Is it possible to remove the anchor element from a span? My example code looks like this... ``` Z21Sunday list CLX1 ``` I've managed to display just the...

Hi, I would like to request the feature to remove attributes from elements. You support ->getAttribute('href') as well as ->setAttribute('href', 'https://google.de') but sadly not something like ->removeAttribute('href') which removes the...

enhancement