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.
<input type="radio" ondblclick="this.checked=false;" />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>test bed</title>
<script language="Javascript">
var lastPicked, lastCheckVal;
lastCheckVal = true;
function checkIt(objRadio) {
//if this is the same radio button as was last clicked and was checked last time, deselect it
if (objRadio == lastPicked && lastCheckVal) {
objRadio.checked = false;
lastPicked = 'nothing';
}
//update last-picked references
lastPicked = objRadio;
lastCheckVal = objRadio.checked;
}
</script>
</head>
<body>
<p>
<form name="ignoreThis">
click option again to deselect:<br> |
1 <input type="radio" name="groupA" value="1" onclick="checkIt(this);"> |
2 <input type="radio" name="groupA" value="2" onclick="checkIt(this);"> |
3 <input type="radio" name="groupA" value="3" onclick="checkIt(this);"> |
</form>
</p>
</form>
</body>
</html>
[/ignore][code]CodeHere
[/ignore][code]CodeHere