I successfully implemented two radio buttons to toggle between alternative texts:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
type="text/javascript"></script>
<style type="text/css">
.displayNone { display: none; }
</style>
</head>
<body>
<input type="radio" name="toggle" />A
<input type="radio" name="toggle" />B
<span class="A">A</span>
<span class="B displayNone">B</span>
<script type="text/javascript">
$('input[name=toggle]').change(function() {
$('.A, .B').toggleClass('displayNone');
})
</script>
</body>
</html>
Now, I am looking to expand this functionality with three radio buttons to switch between three different texts:
<input type="radio" name="toggle" />A
<input type="radio" name="toggle" />B
<input type="radio" name="toggle" />C
<span class="A">A</span>
<span class="B displayNone">B</span>
<span class="C displayNone">C</span>
I believe the solution I have in mind might be too lengthy. Can you suggest a more concise approach?