From 0a3012fd917d7c44d1986fc0e596d26fb9dd0f6a Mon Sep 17 00:00:00 2001 From: Dangrainage <99558179+Dangrainage@users.noreply.github.com> Date: Thu, 25 Apr 2024 00:09:14 +0200 Subject: [PATCH] Update Tester.HTML --- Tester.HTML | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/Tester.HTML b/Tester.HTML index aad2e8f..b7627c9 100644 --- a/Tester.HTML +++ b/Tester.HTML @@ -43,14 +43,29 @@ let listItem = document.createElement('li'); let link = document.createElement('a'); link.textContent = `${result.title} (${result.year})`; - link.href = result.link; // Assuming there's a 'link' property in the dictionary - link.target = '_blank'; // Open link in a new tab + link.href = '#'; // Set href to '#' to prevent default link behavior + 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); resultList.appendChild(listItem); }); 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); + }); + }