Published/Released Year: 1973
Publisher/Manufacturer: Marvel Comics
This is Ghost Rider #2, a notable key issue from 1973. It features the first full appearance of Daimon Hellstrom and the first appearance of the Son of Satan cameo. The storyline continues from Marvel Spotlight #12. This classic comic is encased and graded at 8.0, maintaining its vibrant cover artwork and historical significance in the Ghost Rider series.
Keywords:Ghost RiderCGC 8.0Marvel Comics1973Daimon HellstromSon of Satankey issuecomic bookvintage comicscollectible
';
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);