Update Tester.HTML

This commit is contained in:
Dangrainage 2024-04-25 00:09:14 +02:00 committed by GitHub
parent 85df6dcfe1
commit 0a3012fd91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,14 +43,29 @@
let listItem = document.createElement('li'); let listItem = document.createElement('li');
let link = document.createElement('a'); let link = document.createElement('a');
link.textContent = `${result.title} (${result.year})`; link.textContent = `${result.title} (${result.year})`;
link.href = result.link; // Assuming there's a 'link' property in the dictionary link.href = '#'; // Set href to '#' to prevent default link behavior
link.target = '_blank'; // Open link in a new tab link.onclick = function() { // Add onclick event to fetch movie page
fetchMoviePage(result.link); // Assuming there's a 'link' property in the dictionary
};
listItem.appendChild(link); listItem.appendChild(link);
resultList.appendChild(listItem); resultList.appendChild(listItem);
}); });
searchResultsDiv.appendChild(resultList); searchResultsDiv.appendChild(resultList);
} }
} }
function fetchMoviePage(movieLink) {
fetch(movieLink)
.then(response => response.text())
.then(html => {
// Assuming you want to display the fetched HTML content in a new window
let newWindow = window.open();
newWindow.document.write(html);
})
.catch(error => {
console.error('Error fetching movie page:', error);
});
}
</script> </script>
</body> </body>
</html> </html>