Skip to content
Advertisement

Find div that has no class and no id in PHP Simple HTML DOM Parser

I am using PHP Simple HTML DOM Parser. It works well, but I have problem selecting divs that do not have both ID AND CLASS.

JavaScript

will return all divs that has no class, but can have ID.

I tried this one but it did not work.

JavaScript

Advertisement

Answer

I don’t think that it has this sort of functionality, if you look at the code of parser

JavaScript

So what you can do is

JavaScript

So now the find will have all the elements that don’t have id and class.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement