mirror of
https://github.com/Marketscrape/marketscrape-web.git
synced 2026-06-11 14:34:15 -04:00
10 lines
455 B
JavaScript
10 lines
455 B
JavaScript
// Check if localStorage has items
|
|
if (localStorage.length > 0) {
|
|
// Show the table if localStorage has items
|
|
document.getElementById('result-table').style.display = 'table';
|
|
document.getElementById('noItemsMsg').style.display = 'none';
|
|
} else {
|
|
// Show the "No items!" message if localStorage is empty
|
|
document.getElementById('result-table').style.display = 'none';
|
|
document.getElementById('noItemsMsg').style.display = 'block';
|
|
} |