How do I create a div element in jQuery?
|
closed as not a real question by bmargulies, 0x499602D2, NullPoiиteя, stigok, Graviton Dec 6 '12 at 2:22
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
First select the parent element with something like
then use the
|
|||||||||||||||||||
|
|
As of jQuery 1.4 you can pass attributes to a self-closed element like so:
Here it is in the Docs Examples can be found at jQuery 1.4 Released: The 15 New Features you Must Know . |
|||||||||||||||||||||
|
|
Technically The manipulation documentation gives you all the various options on how to add new elements: http://docs.jquery.com/Manipulation |
|||
|
|||||
|
|
All these worked for me, HTML part:
Javascript:
|
|||
|
|
will append a blank div to |
|||
|
|
|
Hope this helps
|
|||
|
|
This will create new div with id "new" into body. |
|||
|
|
|
document.createElement('div'); |
|||
|
Here's another technique for creating divs with jQuery. ELEMENT CLONING Say you have an existing div in your page that you want to clone using jQuery (e.g. to duplicate an input a number of times in a form). You would do so as follows. Demo Here: http://jsfiddle.net/yYdng/
|
||||
|
|
|
I think this is the best way to add div: To append a test div to the div element with ID div_id:
Now append html to this added test div
|
||||
|
|