aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLars Ingebrigtsen2020-04-30 06:05:17 +0200
committerLars Ingebrigtsen2020-04-30 06:05:26 +0200
commit6c1b12e7d2ff38e313eae97bfd01746ecacdb02f (patch)
tree9df52d6f67c91d5107b6d2af3af8df952264733b /doc
parent0a982c077e7393d865622ff780906a0cb252348d (diff)
downloademacs-6c1b12e7d2ff38e313eae97bfd01746ecacdb02f.tar.gz
emacs-6c1b12e7d2ff38e313eae97bfd01746ecacdb02f.zip
Add new function dom-remove-attribute
* doc/lispref/text.texi (Document Object Model): Document it. * lisp/dom.el (dom-remove-attribute): Add new function.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/text.texi3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 58424a4231b..9317362a70a 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -5161,6 +5161,9 @@ The following are functions for altering the @acronym{DOM}.
5161@item dom-set-attribute @var{node} @var{attribute} @var{value} 5161@item dom-set-attribute @var{node} @var{attribute} @var{value}
5162Set the @var{attribute} of the node to @var{value}. 5162Set the @var{attribute} of the node to @var{value}.
5163 5163
5164@item dom-remove-attribute @var{node} @var{attribute}
5165Remove @var{attribute} from @var{node}.
5166
5164@item dom-append-child @var{node} @var{child} 5167@item dom-append-child @var{node} @var{child}
5165Append @var{child} as the last child of @var{node}. 5168Append @var{child} as the last child of @var{node}.
5166 5169