I try to find that:
<a class="one two three four five">LINK</a>
What can I do to find anchors that contain in its class "four"?
I try in this way:
$dom->find("a[class*=four]");
But it doesn't work. I'm using the html_simple_dom library.
I try to find that:
<a class="one two three four five">LINK</a>
What can I do to find anchors that contain in its class "four"?
I try in this way:
$dom->find("a[class*=four]");
But it doesn't work. I'm using the html_simple_dom library.