let popup = document.querySelectorAll(".popup");
popup.forEach(function(data,index){
data.onclick = function() {
// Тут какие-то действия с нажатым элементом.
}
});
fetch("http://localhost:8080",{
/* тут данные */
}).then((response) => {
if (!response.ok) {
throw new Error("error");
}
return response.json();
}).then((data) => {
console.log(data);
}).catch();
<?php
$content = file_get_contents("php://input");
echo $content;
?>