Forked from anonymous/gist:d0d4026b3ad99ee5817fbc533a8eefda
Last active
January 28, 2018 20:55
-
-
Save Announcement/3ec3235a7b803aeb8cde9ce682f49ffe to your computer and use it in GitHub Desktop.
Harm133##javascript
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) { | |
let parent | |
let child | |
if (document.getElementById(currency).checked) { | |
parent = document.querySelector('#content') | |
child = parent.insertCell(0) | |
child.id = currency | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment