In this tutorial, you'll learn about how to use Dojo to manipulate the DOM in a simple, cross-browser way. Using basic DOM knowledge and only a few Dojo functions, you will be able to efficiently create, read, update and delete elements in the page o…
dom.byId require(["dojo/dom", "dojo/domReady!"], function(dom) { var one = dom.byId("one"); function setText(node, text){ node = dom.byId(node); node.innerHTML = text; } setText(one, "One has been set"); setText(&qu…