Skip to content

Instantly share code, notes, and snippets.

@joshcooper
Created December 14, 2016 02:51
Show Gist options
  • Select an option

  • Save joshcooper/a2894ddf2edbd169731228cd9a841c43 to your computer and use it in GitHub Desktop.

Select an option

Save joshcooper/a2894ddf2edbd169731228cd9a841c43 to your computer and use it in GitHub Desktop.
<html>
<body>
<button onclick="clearFunction()">clear</button>
<script>
function clearFunction() {
document.getElementById("answer").style.visibility = "hidden";
document.getElementById("number1").value = "";
document.getElementById("number2").value = "";
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment