Mango Pieces, Sugar, Vinegar, Ginger & Garlic Paste, Salt, Raw Red Chilli Pieces, Cinnamon, Cardamom, Cloves & Nutmeg Powder
Mango Pieces, Sugar, Vinegar, Ginger & Garlic Paste, Salt, Raw Red Chilli Pieces, Cinnamon, Cardamom, Cloves & Nutmeg Powder
// 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();
}
}