vote up 0 vote down star

I have a the following static div:

<body>
  <div id="div1"></div>
....

I want to add a div with id "div1_1" within div1 dynamically by using dojo. How can I do it?

flag

57% accept rate
the inner div I prefer is centered vertically and horizontally. – David.Chu.ca Mar 26 at 20:25
With Dojo 0.9+ or the older 0.4? – kazanaki Mar 26 at 21:03

3 Answers

vote up 3 vote down check

You can do it using just Dojo Base — no need to include anything, if you use the trunk or Dojo 1.3:

dojo.create("div", {id: "div1_1"}, "div1");

This line create a div with id "div1_1" and appends it to the element with id "div1". Obviously you can add more attributes and styles in one go — read all about it in the documentation for dojo.create().

link|flag
vote up 0 vote down
var divNode = document.createElement("div");
div.id = "div1_1";
document.body.appendChild( divNode );

This is a good way, it helps get past some node referencing issues in IE7 and you can continue to use the reference to the divNode later.

link|flag
vote up 1 vote down
dojo.html.set(dojo.byId("div1"), "<div id='div1_1'></div>");
link|flag
I think I need to add dojo.request("...") for dojo.html. What is the package? – David.Chu.ca Mar 26 at 21:04
sorry, it should be something like dojo.require(...) – David.Chu.ca Mar 26 at 21:05
got it: dojo.require("dojo.html"); – David.Chu.ca Mar 26 at 21:17
right, sorry about that: I fell asleep – Maurice Perry Mar 27 at 6:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.