Update Tester.HTML
This commit is contained in:
parent
1c69f17558
commit
d45e7e21a2
1 changed files with 3 additions and 3 deletions
|
@ -44,9 +44,9 @@
|
||||||
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 ? result.link : '#'; // If link is not available, set href to '#'
|
link.href = result.link ? result.link : '#'; // If link is not available, set href to '#'
|
||||||
link.onclick = function(event) {
|
link.onclick = function() {
|
||||||
if (!result.link) {
|
if (result.link) {
|
||||||
event.preventDefault(); // Prevent default link behavior if link is not available
|
window.location.href = result.link;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
listItem.appendChild(link);
|
listItem.appendChild(link);
|
||||||
|
|
Loading…
Add table
Reference in a new issue