Function: dom-child-by-tag
dom-child-by-tag is a byte-compiled function defined in dom.el.gz.
Signature
(dom-child-by-tag DOM TAG)
Documentation
Return the first child of DOM that is of type TAG.
Source Code
;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-child-by-tag (dom tag)
"Return the first child of DOM that is of type TAG."
(assoc tag (dom-children dom)))