Update Tester.HTML

This commit is contained in:
Dangrainage 2024-04-25 00:12:08 +02:00 committed by GitHub
parent f0ed2c9a7c
commit 44add67335
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);