Files
marketscrape-web/scraper/static/InfoButtonAlert.js
2023-04-20 14:52:25 -07:00

10 lines
420 B
JavaScript

document.getElementById('infoBtn').addEventListener('click', function () {
// Show the Bootstrap alert
var alertElement = document.getElementById('infoAlert');
// Set the display property to 'block' to make the alert visible
alertElement.style.display = 'block';
document.getElementById('closeAlertBtn').addEventListener('click', function() {
alertElement.style.display = 'none';
});
});