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

HI, I have simple HTML code with some javascript, it looks like:

<html>

<head><script type="text/javascript">...</script></head>

<body>

    <input type="radio" name="radiobutton" value="A" onClick="changeDivContent()">
    <input type="radio" name="radiobutton" value="B" onClick="changeDivContent()">

    <div id="content"></div>

</body>

</html>

I just wanted to be able change div's content (it's inner html) with selecting one of "A" or "B" radio buttons, but div#content does not have javascript attribute "value", so I am asking how it can be done.

Thank you!

share|improve this question

1 Answer

up vote 29 down vote accepted

Assuming you're not using jQuery or some other library that makes this sort of thing easier for you, you can just use the element's innerHTML property.

document.getElementById("content").innerHTML = "whatever";
share|improve this answer
1  
Oh, thank you! It was so easy, for my shame :) – Rob Mar 31 '10 at 15:21

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.