Create Child for Div tag : HTML « Ext JS « JavaScript DHTML






Create Child for Div tag

 <html> <head> <title>Hello World Window</title> <link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" /> <script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script> <script type="text/javascript" src="ext-3.0.0/ext-all.js"></script> </head> <body> <script type="text/javascript"> Ext.onReady(function() { var myDiv1 = Ext.get('div1'); myDiv1.createChild('Child from a string'); }); </script> <div id='div1'></div> </body> </html> 








Related examples in the same category

1.Create child for div tag with html tags
2.Child from a config object
3.Set style for created children
4.Nested div tag with border
5.Insert child as node to a div tag
6.Insert node to an indexed position
7.Set Div tag size
8.Get width and height of a Div tag
9.Use update method to set new text for div tag
10.Align div tag to another tag
11.Put mask to a div tag
12.Add child tag to div tag
13.Remove a tag from html body
14.Get last children
15.Add click event handler to div tag
close