Published/Released Year: 1989
Publisher/Manufacturer: DC Comics
This comic marks the introduction of the Legends of the Dark Knight series, focusing on Batman's solo adventures. Featuring unique story arcs, it delves into Batman's past and psychological complexity. As a collector's special, it is highly sought after by fans and collectors alike.
Keywords:BatmanLegends of the Dark KnightDC Comics1989comic bookcollectors' itemsuperherographic novelBatman's adventuresvintage comics
Related Products
DC Comics Presents #71, Bizarro, Newsstand, DC, 1984
';
responseDiv.style.display = 'block';
submitButton.disabled = false;
});
};
// Make closePopup function global so it can be called from the popup HTML
window.closePopup = function(ctaId) {
const popup = document.getElementById(`popupOverlay_${ctaId}`);
if (popup) {
popup.remove();
}
};
// Global function to load spin wheel in popup
window.loadSpinWheelInPopup = function(wheelId, containerId) {
const container = document.getElementById(containerId);
if (!container) return;
// Include the spin wheel widget component
fetch(`/components/spin-wheel/spin-wheel-widget.php?wheel_id=${wheelId}&showTitle=false&showDescription=false`)
.then(response => response.text())
.then(html => {
container.innerHTML = html;
// Initialize the spin wheel JavaScript if available
if (typeof initSpinWheel === 'function') {
initSpinWheel(wheelId);
}
})
.catch(error => {
console.error('Error loading spin wheel:', error);
container.innerHTML = `
Unable to load spin wheel. Please refresh the page.
`;
});
};
}
// Call the function when the DOM is fully loaded
document.addEventListener('DOMContentLoaded', initPopupCTA);