Chilli Pieces, Vegetable Oil, Maldive Fish Chips, Ginger & Garlic Paste, Sugar, Vinegar & Salt
Chilli Pieces, Vegetable Oil, Maldive Fish Chips, Ginger & Garlic Paste, Sugar, Vinegar & Salt
// Check if the device is a desktop (using media query)
if (window.matchMedia("(min-width: 768px)").matches) {
// Find the search bar element
let searchBar = document.querySelector(".desktop-search-bar");
// Remove the search bar if it exists
if (searchBar) {
searchBar.remove();
}
}