From d45e7e21a29c16f85023a4e7aa002729da813553 Mon Sep 17 00:00:00 2001 From: Dangrainage <99558179+Dangrainage@users.noreply.github.com> Date: Thu, 25 Apr 2024 00:13:43 +0200 Subject: [PATCH] Update Tester.HTML --- Tester.HTML | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tester.HTML b/Tester.HTML index a9fc92b..8887a5c 100644 --- a/Tester.HTML +++ b/Tester.HTML @@ -44,9 +44,9 @@ let link = document.createElement('a'); link.textContent = `${result.title} (${result.year})`; link.href = result.link ? result.link : '#'; // If link is not available, set href to '#' - link.onclick = function(event) { - if (!result.link) { - event.preventDefault(); // Prevent default link behavior if link is not available + link.onclick = function() { + if (result.link) { + window.location.href = result.link; } }; listItem.appendChild(link);