Update Tester.HTML

This commit is contained in:
Dangrainage 2024-04-25 08:42:27 +02:00 committed by GitHub
parent 813788bcc1
commit 3d27eaff53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,14 +38,17 @@
if (results.length === 0) { if (results.length === 0) {
searchResultsDiv.textContent = 'No results found.'; searchResultsDiv.textContent = 'No results found.';
} else { } else {
let resultList = document.createElement('ul');
results.forEach(result => { results.forEach(result => {
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; link.href = result.link; // Assuming there's a 'link' property in the dictionary
link.style.display = 'block'; link.target = '_blank'; // Open link in a new tab
link.style.marginBottom = '10px'; listItem.appendChild(link);
searchResultsDiv.appendChild(link); resultList.appendChild(listItem);
}); });
searchResultsDiv.appendChild(resultList);
} }
} }
</script> </script>