Files
marketscrape-web/scraper/static/clearLocalStorage.js
2023-04-21 03:53:14 +00:00

5 lines
156 B
JavaScript

document.getElementById('clearResultsBtn').addEventListener('click', function() {
if (localStorage.length > 0) {
localStorage.clear();
}
});