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

Future<SendPort> spawnDomFunction(Function f) #

Future<SendPort> spawnDomFunction(Function f) =>
 new Future.value(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