How do I move the button
from the div with id of two
to the div with id of one
when I click the button?
<div id="one">
</div>
<div id="two">
<button onclick="moveMe"></button>
</div>
function moveMe() {
// ??
}
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
How do I move the button
from the div with id of two
to the div with id of one
when I click the button?
<div id="one">
</div>
<div id="two">
<button onclick="moveMe"></button>
</div>
function moveMe() {
// ??
}