I have two divs
<div id = "first">some details111</div>
and
<div id = "second">some details222</div>
I want to create:
<div id ="New">some details111 some details222</div>
What is the best and the fast way to do it?
|
I have two divs
and
I want to create:
What is the best and the fast way to do it? |
|||||||||||||
|
|
Using jQuery you could do that:
|
|||
|
|
|
Well, using jQuery you can do by this way:
|
|||||
|
|
JQuery' s each function can be used to iterate and copy all content of one div to another. |
|||
|
|
|
$("<div></div>").attr("id", "New").html($("#first").html() + $("#second").html()).appendTo($("body")); |
||||
|
|
|
Try the below : Fiddle Example : http://jsfiddle.net/RYh7U/99/ If you already have a DIV with ID "NEW" then try like below:
If you want to Create a div and then add the Content then try like below.
|
|||||||||||
|
|
Some vanilla JS for kicks and giggles:
|
|||
|
|