Dart API Referencedart:html

dart:html library

The Dart HTML library.

Properties

final HtmlDocument document #

The top-level Document object.

HtmlDocument get document => JS('HtmlDocument', 'document');

final Window window #

The top-level Window object.

Window get window => JS('Window', 'window');

Functions

dynamic spawnDomFunction(Function f) #

spawnDomFunction(Function f) => IsolateNatives.spawnDomFunction(f);

ElementList queryAll(String selector) #

ElementList queryAll(String selector) => document.queryAll(selector);

Element query(String selector) #

Element query(String selector) => document.query(selector);

Abstract Classes

Classes

Css

Url

Typedefs

Exceptions