I have Three card with some content inside that content I set propertie display none with css and I let icon show , I want to click on that icon and the content show with JavaScript and this is my code but is not working
let show = document.querySelectorAll(".transparent");
let icon = document.querySelectorAll("card-one a");
icon.onclick = function(){
show.style.display = "block"
}