diff options
| author | Lars Ingebrigtsen | 2020-04-30 06:05:17 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2020-04-30 06:05:26 +0200 |
| commit | 6c1b12e7d2ff38e313eae97bfd01746ecacdb02f (patch) | |
| tree | 9df52d6f67c91d5107b6d2af3af8df952264733b /doc | |
| parent | 0a982c077e7393d865622ff780906a0cb252348d (diff) | |
| download | emacs-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.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}. | |||
| 5161 | @item dom-set-attribute @var{node} @var{attribute} @var{value} | 5161 | @item dom-set-attribute @var{node} @var{attribute} @var{value} |
| 5162 | Set the @var{attribute} of the node to @var{value}. | 5162 | Set the @var{attribute} of the node to @var{value}. |
| 5163 | 5163 | ||
| 5164 | @item dom-remove-attribute @var{node} @var{attribute} | ||
| 5165 | Remove @var{attribute} from @var{node}. | ||
| 5166 | |||
| 5164 | @item dom-append-child @var{node} @var{child} | 5167 | @item dom-append-child @var{node} @var{child} |
| 5165 | Append @var{child} as the last child of @var{node}. | 5168 | Append @var{child} as the last child of @var{node}. |
| 5166 | 5169 | ||