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>
function checkBox(inTextBox) {
var boxId = inTextBox.id;
if(boxId == "box1") {
document.getElementById("box2").value = "";
}else if(boxId == "box2"){
document.getElementById("box1").value = "";
}
}
</script>
<input type="text" id="box1" onblur="checkBox(this)"/>
<input type="text" id="box1" onblur="checkBox(this)" />
<script>
function checkBox(inTextBox) {
var boxId = inTextBox.id;
[b]var boxValue = document.getElementById(boxId).value;[/b]
if(boxId == "box1" [b]&& boxValue != ""[/b]) {
document.getElementById("box2").value = "";
}else if(boxId == "box2" [b]&& boxValue != ""[/b]){
document.getElementById("box1").value = "";
}
}
</script>