Lines Matching defs:id
523 // code tracker id 2788009
571 list($tag, $id, $class, $attributes, $cmb) = $selector;
628 if ($pass && $id !== '' && !isset($node->attr['id'])) {
633 if ($pass && $id !== '' && isset($node->attr['id'])) {
635 $node_id = explode(' ', trim($node->attr['id']))[0];
637 if($id !== $node_id) { $pass = false; }
855 * [2] - id name
857 * Optionally matches a id name, consisting of an "#" followed by
858 * the id name (one or more words and hyphens).
1157 // Look in the tag to see if there is a class or id specified that has
1162 // class or id that has an img selector that specifies a height or width
1163 // Note that in this case, the class or id will have the img subselector
1167 // If the class or id is specified in a SEPARATE css file thats not on
1318 function getElementById($id)
1320 return $this->find("#$id", 0);
1323 function getElementsById($id, $idx = null)
1325 return $this->find("#$id", $idx);
1745 * -- https://bugs.php.net/bug.php?id=38138
2330 function getElementById($id)
2332 return $this->find("#$id", 0);
2335 function getElementsById($id, $idx = null)
2337 return $this->find("#$id", $idx);