Update Tester.HTML
This commit is contained in:
parent
0a3012fd91
commit
f0ed2c9a7c
1 changed files with 4 additions and 16 deletions
20
Tester.HTML
20
Tester.HTML
|
@ -43,9 +43,10 @@
|
||||||
let listItem = document.createElement('li');
|
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 = '#'; // Set href to '#' to prevent default link behavior
|
link.href = result.link; // Assuming there's a 'link' property in the dictionary
|
||||||
link.onclick = function() { // Add onclick event to fetch movie page
|
link.onclick = function(event) {
|
||||||
fetchMoviePage(result.link); // Assuming there's a 'link' property in the dictionary
|
event.preventDefault(); // Prevent default link behavior
|
||||||
|
window.location.href = result.link; // Redirect to the movie page
|
||||||
};
|
};
|
||||||
listItem.appendChild(link);
|
listItem.appendChild(link);
|
||||||
resultList.appendChild(listItem);
|
resultList.appendChild(listItem);
|
||||||
|
@ -53,19 +54,6 @@
|
||||||
searchResultsDiv.appendChild(resultList);
|
searchResultsDiv.appendChild(resultList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function fetchMoviePage(movieLink) {
|
|
||||||
fetch(movieLink)
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(html => {
|
|
||||||
// Assuming you want to display the fetched HTML content in a new window
|
|
||||||
let newWindow = window.open();
|
|
||||||
newWindow.document.write(html);
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
console.error('Error fetching movie page:', error);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Reference in a new issue