Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTML>
<HEAD>
<SCRIPT>
function showVal()
{
for(i=0; i<RB.length; i++)
if(RB[i].checked)
alert(RB[i].value);
}//end showVal()
</SCRIPT>
</HEAD>
<BODY>
<INPUT TYPE=RADIO VALUE=1 NAME=RB> 1<BR>
<INPUT TYPE=RADIO VALUE=2 NAME=RB> 2<BR>
<INPUT TYPE=RADIO VALUE=3 NAME=RB> 3<BR>
<INPUT TYPE=BUTTON VALUE='SHOW VAL' ONCLICK=showVal()>
</BODY>
</HTML>