Function
see `dojo.html.set()`. Set the content of all elements of this NodeList
Based around `dojo.html.set()`, set the content of the Elements in a NodeList to the given content (string/node/nodelist), with optional arguments to further tune the set content behavior.
dojo.NodeList
dojo.query(".thingList").html("<li dojoType='dojo.dnd.Moveable'>1</li><li dojoType='dojo.dnd.Moveable'>2</li><li dojoType='dojo.dnd.Moveable'>3</li>",
{
parseContent: true,
onBegin: function(){
this.content = this.content.replace(/([0-9])/g, this.id + ": $1");
this.inherited("onBegin", arguments);
}
}).removeClass("notdone").addClass("done");Object
Object