Element get(String id)

Gets an Element from the DOM by the id or from the cache if available

Source

Element get(String id)
{
    var el = _cache[id];
    if ( el == null ) el = querySelector("#${id}");
    return el;
}