Using an onclick function, I'm trying to take the content from a hidden div, and place it into a visible div. Instead of the content showing up, I get [object HTMLDivElement] instead. How do I fix that?
My code:
function infoclick1(){
var x = document.getElementById('HIDE1');
document.getElementById('moreinfo').innerHTML = x;
}
divelement returned bydocument.getElementByIdtoxrather than the div's content. :D – danem Sep 10 '11 at 1:39