According to the Sourceforge Code site:
$element = $html->find("font[size=-1]", 3); echo "Width is: " . $element->width . '<br />';
I'm trying to check if there is and image after the <td> tag, and if there is grab the width value. the method i'm using below is not working
$element = $html->find("td", 23);
if ($element->innertext != null) {
$element = $html->find("td img[src=http://pictures.domain.com/images/7.gif]");
echo $element->width . '<br />';
} else {
echo "empty";
}




Find content
Not Telling
