friendship ended with social-app. php is my new best friend
at main 662 B view raw
1document.getElementById('attachment-clear').addEventListener('click', (e) => { 2 e.preventDefault(); 3 document.querySelectorAll('[name="attachment-type"]').forEach((elt) => { 4 elt.checked = false; 5 }); 6}); 7 8document.querySelectorAll('[name="attachment-type"]').forEach((elt) => { 9 elt.addEventListener('change', (e) => { 10 const type = e.target.value; 11 document.getElementById('attachment-images-field').style.display = "none"; 12 document.getElementById('attachment-media-field').style.display = "none"; 13 document.getElementById('attachment-link-field').style.display = "none"; 14 document.getElementById(type).style.display = "block"; 15 }); 16});