How to create a div element in jQuery ?
There are various method to create HTML element inside an HTML document using JQuery. But the simplest of all is append() and prepend() method.
Method 1: Using prepend() Method: The prepend() method is used to insert a specified content at the beginning of the selected element.
Example: This example uses prepend() method to create div element at the beginning of selected element.
<!DOCTYPE html> < html > < head > < title >Create div element</ title > < script src=" </ script > <!-- Script to add div element in the HTML document --> < script > $(document).ready(function() { // Select the element inside div // element will be added $("body") .prepend('< div class = "added" >This is added div </ div >'); }); </ script > <!-- Style to use on div element --> < style > div { padding: 20px; margin-bottom: 10px; border: 1px solid green; display: inline-block; } </ style > </ head > < body > < div class = "initial" > This is initial div </ div > </ html > |
Output:
Method 2: Using appendTo() Method: The appendTo() method in jQuery is used to insert HTML element at the end of the selected element.
Example 1: This example uses appendTo() method to create div element at the end of selected element.
<!DOCTYPE html> < html > < head > < title >Create div element</ title > < script src=" </ script > <!-- Script to add div element at the end of document --> < script > $(document).ready(function() { $("< div >This is another added div</ div >").appendTo("body"); }); </ script > <!-- Style to use on div element --> < style > div{ padding: 20px; margin-bottom: 10px; border: 1px solid green; display: inline-block; } </ style > </ head > < body > < div class = "initial" > This is initial div </ div > </ body > </ html > |
Output:
Example 2: This example uses appendTo() method to create div element within the div element.
<!DOCTYPE html> < html > < head > < title >Create div element</ title > < script src=" </ script > <!-- Script to create div element --> < script > $(document).ready(function() { jQuery("< div />", { id: "div-id", class: "div-class", text: "This is text of div" }).appendTo(".box"); }); </ script > <!-- Style to add on div element --> < style > div { padding: 20px; margin-bottom: 10px; border: 1px solid green; display: inline-block; } </ style > </ head > < body > < div class = "initial" > This is initial div </ div > < div class = "box" ></ div > </ body > </ html > |
Output:
Recommended Posts:
- jQuery | Create a div element
- How to create hidden form element on the fly using jQuery ?
- How to create auto-resize textarea using JavaScript/jQuery ?
- How to create slide left and right toggle effect using jQuery?
- How to remove parent element except its child element using jQuery ?
- jQuery | Move an element into another element
- How to create an image element dynamically using JavaScript ?
- How to get a DOM Element from a jQuery Selector ?
- jQuery | element Selector
- jQuery | element + next Selector
- How to change the element id using jQuery ?
- How to get focused element using jQuery?
- How to select an element by name with jQuery?
- How to check an element has certain CSS style using jQuery ?
- JQuery | Get the n-th level parent of an element
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : Shivam_k