Removes an Element from the DOM by the id
id
void remove(String id) { var el = get(id); if (el != null) el.remove(); }