I want to get the tags with "class" attribute equal to "someclass" but only those tags that hasn't defined the attribute "id".
I tried the following (based on this answer) but didn't work:
$html->find('.someclass[id!=*]');
Note:
I'm using Simple HTML DOM class and in the basic documentation that they give, I didn't find what I need.