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;
}
    Gets an Element from the DOM by the id or from the cache if available
Element get(String id)
{
    var el = _cache[id];
    if ( el == null ) el = querySelector("#${id}");
    return el;
}