phpQueryObject::unbind PHP Method

unbind() public method

..
public unbind ( unknown_type $type = null, unknown_type $callback = null ) : unknown
$type unknown_type
$callback unknown_type
return unknown
    public function unbind($type = null, $callback = null)
    {
        foreach ($this->elements as $node) {
            phpQueryEvents::remove($this->getDocumentID(), $node, $type, $callback);
        }
        return $this;
    }