pQuery\DomNode::after PHP Метод

after() публичный Метод

public after ( $content )
    public function after($content)
    {
        $offset = $this->index() + 1;
        $parent = $this->parent;
        $nodes = $this->createNodes($content);
        foreach ($nodes as $node) {
            $node->changeParent($parent, $offset);
        }
        return $this;
    }
DomNode