Created
January 28, 2018 20:47
-
-
Save anonymous/d0d4026b3ad99ee5817fbc533a8eefda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function show(currency){ | |
if (document.getElementById(currency).checked){ | |
var parent = document.getElementById('content'); | |
var child = parent.insertCell(0); | |
var child.id = currency; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment