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.
If you’re using jQuery, the code you want is
Have a look here for a demo,
http://jsfiddle.net/nwe44/we2cN/