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.
<script language=javascript>
function emulateRadio(obj) {
checkGroup = document.forms["blahForm"].elements["chkgrp"];
for (i = 0; i < checkGroup.length; i++) {
if (checkGroup[i] != obj) {
checkGroup[i].checked = false;
}
}
}
</script>
<body>
<form name=blahForm>
<input type=checkbox name=chkgrp onclick='emulateRadio(this)'>Your Friend<br>
<input type=checkbox name=chkgrp onclick='emulateRadio(this)'>Should Learn<br>
<input type=checkbox name=chkgrp onclick='emulateRadio(this)'>To Like<br>
<input type=checkbox name=chkgrp onclick='emulateRadio(this)'>Radio Buttons<br>
</form>
</body>