MapperElement
The mapper element can be used to define an entry point in the DOM by defining a 'div' node with an id attribute.
...
var aMapper = new MapperElement("myID");
aMapper.insert("#mapper");
$('#myID').append('This is a test');	
...