Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
10  
Please show some work here. This is a not a free software writing service. – Diodeus Feb 21 at 15:10
1  
It's not free, we write code for points! – dfsq Feb 21 at 15:12
Hi I am not asking to write me a free code, I just want a good tip or advice. – user2095956 Feb 21 at 15:12
This isn't the place for 'tips' or 'advice' as such, we're here to answer specific programming problems. – David Thomas Feb 21 at 15:13

6 Answers

Using jQuery you could do that:

$(document).ready(function(){
   $("body").append("<div id='New'></div>");
   $("#New").text($("#first").text() + " " +$("#second").text());
});
share|improve this answer

Well, using jQuery you can do by this way:

$("body").append(
    $('<div/>')
        .attr("id","New")
        .html(
            $("#first).html() + $("#second").html()
        )
);
share|improve this answer
Hi, Thanks for the help. How I see It creates me new div but how I erase the old one ? – user2095956 Feb 21 at 15:24
$("#first,#second").remove(); – UltimateProgrammer_BR Feb 21 at 16:17

JQuery' s each function can be used to iterate and copy all content of one div to another.

share|improve this answer

$("<div></div>").attr("id", "New").html($("#first").html() + $("#second").html()).appendTo($("body"));

share|improve this answer

Try the below :

Fiddle Example : http://jsfiddle.net/RYh7U/99/

If you already have a DIV with ID "NEW" then try like below:

$('#New').html($('#first').html() + " " + $('#second').html())

If you want to Create a div and then add the Content then try like below.

$("body").append("<div id ='New'></div>")
$('#New').html($('#first').html() + " " + $('#second').html())
share|improve this answer
That wouldn't work, since $('New') would try to select an element (and fail), not create a new one. – Anthony Grist Feb 21 at 15:15
@AnthonyGrist : I changed my code... – Pandian Feb 21 at 15:16
1  
Same issue, the div id="New"> element doesn't exist; you're still trying (incorrectly) to select an existing element, you're not creating a new one. – Anthony Grist Feb 21 at 15:17
@AnthonyGrist : Is this the change your asking...? Now the code is ok...? – Pandian Feb 21 at 15:26

Some vanilla JS for kicks and giggles:

// grab the content from our two divs
var content1 = document.getElementById('one').innerHTML;
var content2 = document.getElementById('two').innerHTML;

// create our new div, pop the content in it, and give it an id
var combined = document.createElement('div');
combined.innerHTML = content1 + " " + content2; // a little spacing
combined.id = 'new';

// 'container' can be whatever your containing element is
document.getElementById('container').appendChild(combined);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.