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.
document.getElementByIdyou don't need the # in the id. – Vahur Roosimaa Jul 22 '11 at 15:52