I am trying to use a simple radio button in my main page to show and hide divs by class which are inside an iframe. Here are the relevant snippets of code:
In the "index.html" :
<head>
<script>
function setlanguage(language) {
..........will save myself the embarrassment of showing you my attempts at coding this.................
}
</script>
</head>
<body>
<input id="english" type="radio" checked onclick="setlanguage('EN')">
<input id="deutsch" type="radio" onclick="setlanguage('DE')">
<input id="francais" type="radio" onclick="setlangu