Hi, I am developing a map application with some widgets and in my case, I am trying to dynamically create some nodes as required by a jquery widget. It works fine in IE8,FF etc however the DOM structure is not created for IE7 or maybe it is but not picked up by the jquery widget.
var node=domConstruct.create('div');
dojo.place(node,'list',0)
// and more nodes and sub nodes dynamically added.
Any ideas.