This infrastructure is considered to be beta. Everything should be usable, to a certain degree. NAME DOM.Element.Create - Create new DOM elments in a more declarative manner SYNOPSIS // BEFORE var link = document.createElement('a'); link.href= "http://www.google.com"; link.title= "Search the Web"; link.target= "_blank" link.onclick= function() { alert('here we go'); return true; }; link.appendC