Välkommen till webForum SoulOfDark! :bire
Redigerad: Knappens text skulle ju bli fetstilt också.
Exempel:
<script type="text/javascript">
<!--
function doSelect(o,s){
var elms=o.form.elements, i=elms.length;
while(i-->0){
if(elms[i].name==s && elms[i]!=o){
if(elms[i].type=="radio")
elms[i].checked=true;
else
elms[i].style.fontWeight="bold";
}
}
};
//-->
</script>
...
<form>
R1<input type="radio" name="r1" onclick="doSelect(this,'r1')">
R2<input type="radio" name="r2" onclick="doSelect(this,'r2')">
R3<input type="radio" name="r3" onclick="doSelect(this,'r3')">
<button onclick="doSelect(this,'r1')" name="r1">Knapp 1</button>
<button onclick="doSelect(this,'r2')" name="r2">Knapp 2</button>
<button onclick="doSelect(this,'r3')" name="r3">Knapp 3</button>
</form>
:)