Contact Us


ADDRESS:

Navratan


INDIA

Building No-901, 3rd Floor,
Narendra Plaza, Ganga Mata Street,
Gopal Ji Ka Rasta, Johari Bazar 302003
Jaipur, Rajasthan (India)



Thank You

Team Navratan

Get In Touch


Fields marked * are mandatory
×

Your Shopping Bag


Your shopping cart is empty.
// Select all elements with the class 'text-center mt-2' const elements = document.querySelectorAll('.text-center.mt-2'); // Loop through each element elements.forEach(element => { // Check if the text content contains "View Detail" or "SOLD OUT" if (element.textContent.includes('View Detail') || element.textContent.includes('SOLD OUT')) { // Set display to none if condition is met element.style.display = 'none'; } else { // Ensure display is visible otherwise element.style.display = ''; } });