mirror of
https://github.com/dilllxd/gitfolio.git
synced 2024-08-14 22:28:09 +00:00
7 lines
276 B
JavaScript
7 lines
276 B
JavaScript
document.querySelector("#socials").addEventListener("change", event => {
|
|
if (event.target.checked) {
|
|
document.querySelector("#input_for_socials").style.display = "block";
|
|
} else {
|
|
document.querySelector("#input_for_socials").style.display = "none";
|
|
}
|
|
});
|