From 44add6733579ed45396a52374676651c343ef89c Mon Sep 17 00:00:00 2001 From: Dangrainage <99558179+Dangrainage@users.noreply.github.com> Date: Thu, 25 Apr 2024 00:12:08 +0200 Subject: [PATCH] Update Tester.HTML --- Tester.HTML | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Tester.HTML b/Tester.HTML index a52275f..d056b30 100644 --- a/Tester.HTML +++ b/Tester.HTML @@ -43,10 +43,16 @@ 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 + if (result.link) { // Check if 'link' property is defined + link.href = result.link; // Set link if available + } else { + link.href = '#'; // Set to '#' if link is not available + } link.onclick = function(event) { event.preventDefault(); // Prevent default link behavior - window.location.href = result.link; // Redirect to the movie page + if (result.link) { // Only redirect if 'link' is defined + window.location.href = result.link; // Redirect to the movie page + } }; listItem.appendChild(link); resultList.appendChild(listItem);