Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried to move my div and its contents to another div using such things as:

<script>
  document.getElementById('#header').appendChild(
    document.getElementById('#live')
  );
</script>

and

<script>
$("#header").append($("#live"))

  );
</script>

but i cant move the div the best i have done is move some text about.

Help.

share|improve this question
Are you using JavaScript au naturel or is jQuery or another JavaScript library part of your application? – andyb Jul 22 '11 at 15:50
Firstly, you need to give us some context (used HTML etc). Secondly, when calling document.getElementById you don't need the # in the id. – Vahur Roosimaa Jul 22 '11 at 15:52

3 Answers

up vote 3 down vote accepted

If you're using jQuery, the code you want is

$('#div1Content').appendTo('#div2');

Have a look here for a demo, http://jsfiddle.net/nwe44/we2cN/

share|improve this answer
Successes, sort of ,I now have it working using the code from the link, so you need to click the link, is there a way to do this on load, so it happens straight away. Thanks Very much – dave Jul 22 '11 at 19:13
If you do it onload the user will see a jump, as the page may render before JavaScript gets a chance to look at it, so I'd advise against, although obviously I have no context for this recommendation. – Nicholas Evans Jul 23 '11 at 18:53

Try

$('#live').appendTo('#header');

alternatively,

var live = $('#live').detach();
//do stuff
live.appendTo('#header');

detach() removes it from the DOM but keeps it in memory, then you can append it to its new parent.

share|improve this answer
You don't need to detach it first. Just appendTo will work fine. – James Allardice Jul 22 '11 at 15:54
Good point, I never knew that. – Andrew Jul 22 '11 at 15:57
Thanks for feed back I will try your suggestion and get back right now thanks – dave Jul 22 '11 at 16:25
Im using javascript I am having to but a div in the footer that needto go in the header, I can not get at the code for the whole site only the foot html. – dave Jul 22 '11 at 16:26
@dave If by header you mean the head of the page then you can get a reference using just, $('head'). The '#' indicates that the following word is the id of an element in jQuery. – Andrew Jul 22 '11 at 16:56

With jQuery (as you appear to be using it in one of your examples) you can use the appendTo method (see docs):

$("#live").appendTo("#header");

This moves the #live element into the #header element.

share|improve this answer
I will explain a little more I have a div with some other javascript in it, it is in the footer, I wish it to be at the top of the page eg in header (not top of viewport) not to stay visable when scrolling but to scroll up as in normal flow, I cant get access to the full html to put the div in the right place so need javascript to come to my resuce but can get it working. Site is using jquery 1.4. and jquery-ui 1.8 – dave Jul 22 '11 at 16:38

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.