diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-04-30 06:05:17 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-04-30 06:05:26 +0200 |
commit | 6c1b12e7d2ff38e313eae97bfd01746ecacdb02f (patch) | |
tree | 9df52d6f67c91d5107b6d2af3af8df952264733b /doc/lispref/text.texi | |
parent | 0a982c077e7393d865622ff780906a0cb252348d (diff) | |
download | emacs-6c1b12e7d2ff38e313eae97bfd01746ecacdb02f.tar.gz |
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/lispref/text.texi')
-rw-r--r-- | doc/lispref/text.texi | 3 |
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}. @item dom-set-attribute @var{node} @var{attribute} @var{value} Set the @var{attribute} of the node to @var{value}. +@item dom-remove-attribute @var{node} @var{attribute} +Remove @var{attribute} from @var{node}. + @item dom-append-child @var{node} @var{child} Append @var{child} as the last child of @var{node}. |