method insertAdjacentHtml


void insertAdjacentHtml(String where, String html, {NodeValidator validator, NodeTreeSanitizer treeSanitizer})

Parses text as an HTML fragment and inserts it into the DOM at the specified location.

The where parameter indicates where to insert the HTML fragment:

See also:

Source

void insertAdjacentHtml(String where, String html, {NodeValidator validator,
    NodeTreeSanitizer treeSanitizer}) {
    if (treeSanitizer is _TrustedHtmlTreeSanitizer) {
      _insertAdjacentHtml(where, html);
    } else {
      _insertAdjacentNode(where, createFragment(html,
          validator: validator, treeSanitizer: treeSanitizer));
    }
}