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

14 lines
500 B
JavaScript

document.getElementById('clearResultsBtn').addEventListener('click', function() {
if (localStorage.length > 0) {
localStorage.clear();
}
// Show the Bootstrap alert
var alertElement = document.getElementById('clearAlert');
// 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';
});
});