Function: dom-by-id
dom-by-id is a byte-compiled function defined in dom.el.gz.
Signature
(dom-by-id DOM MATCH)
Documentation
Return elements in DOM that have an ID that matches regexp MATCH.
Source Code
;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-by-id (dom match)
"Return elements in DOM that have an ID that matches regexp MATCH."
(dom-elements dom 'id match))