* Append HTML string to the element's innerHTML
(htmlString: string)
| 524 | * Append HTML string to the element's innerHTML |
| 525 | */ |
| 526 | appendHtml(htmlString: string): this { |
| 527 | this.native.insertAdjacentHTML("beforeend", htmlString); |
| 528 | return this; |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * Append a child element |
no outgoing calls
no test coverage detected