Тема: Я тупий?
Що не так?
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<?php
echo "<span id='id2'>btn</span><br>";
echo "<span style='display:none' id='aboutmail'>mailmailmailmailmailmailmailmail</span>";
?>
<script>
document.querySelectorAll('#id2').forEach(function(e) {
e.addEventListener('click', function(){
obj = document.querySelectorAll('#aboutmail');
if(obj.style.display == "none"){
obj.style.display = "block";
}else{
obj.style.display = "none";
}
})
})
</script>
</body>
</html>