Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
the inner div I prefer is centered vertically and horizontally. – David.Chu.ca Mar 26 '09 at 20:25
With Dojo 0.9+ or the older 0.4? – kazanaki Mar 26 '09 at 21:03

5 Answers

up vote 10 down vote accepted

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 creates 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().

share|improve this answer
// dojo 1.7+ (AMD)
var n = domConstruct.create("div");
// dojo < 1.7
var n = dojo.create("div");
share|improve this answer
dojo.html.set(dojo.byId("div1"), "<div id='div1_1'></div>");
share|improve this answer
I think I need to add dojo.request("...") for dojo.html. What is the package? – David.Chu.ca Mar 26 '09 at 21:04
sorry, it should be something like dojo.require(...) – David.Chu.ca Mar 26 '09 at 21:05
got it: dojo.require("dojo.html"); – David.Chu.ca Mar 26 '09 at 21:17
right, sorry about that: I fell asleep – Maurice Perry Mar 27 '09 at 6:53

Another option using flexible dojo.place:

dojo.place("<div id='div1_1'></div>", "div1", /*optional*/ "only");
share|improve this answer
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.

share|improve this answer
Use of this display an Error : Cannot find 'div' construct. – Jayprakash Dubey May 14 at 11:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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