Half Circle Diamond Pendant In 10 Karat Yellow Gold Featuring 25=0.50ctw Round Brilliant Cut Diamonds JK In Colour I1 In Clarity
Length: 18 Inches
C...More
Half Circle Diamond Pendant In 10 Karat Yellow Gold Featuring 25=0.50c...
10 Karat Yellow Gold Pisces Zodiac Disc Pendant Featuring 3=0.009ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18" Ch...More
10 Karat Yellow Gold Aquarius Zodiac Disc Pendant Featuring 4=0.012ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18" ...More
10 Karat Yellow Gold Aquarius Zodiac Disc Pendant Featuring 4=0.012ctw...
10 Karat Yellow Gold Capricorn Zodiac Disc Pendant Featuring 3=0.009ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18"...More
10 Karat Yellow Gold Capricorn Zodiac Disc Pendant Featuring 3=0.009ct...
10 Karat Yellow Gold Sagittarius Zodiac Disc Pendant Featuring 4=0.012ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 1...More
10 Karat Yellow Gold Sagittarius Zodiac Disc Pendant Featuring 4=0.012...
10 Karat Yellow Gold Scorpio Zodiac Disc Pendant Featuring 4=0.012ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18" C...More
10 Karat Yellow Gold Libra Zodiac Disc Pendant Featuring 3=0.009ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18" Cha...More
10 Karat Yellow Gold Virgo Zodiac Disc Pendant Featuring 4=0.012ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18" Cha...More
10 Karat Yellow Gold Leo Zodiac Disc Pendant Featuring 3=0.009ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18" Chain...More
10 Karat Yellow Gold Leo Zodiac Disc Pendant Featuring 3=0.009ctw Roun...
10 Karat Yellow Gold Cancer Zodiac Disc Pendant Featuring 2=0.006ctw Round, JK Colour, I1 Quality Diamonds In A Constellation Arrangement On An 18" Ch...More
10 Karat Yellow Gold Cancer Zodiac Disc Pendant Featuring 2=0.006ctw R...
document.addEventListener("DOMContentLoaded", function() {
console.log("DOM fully loaded and parsed");
// Function to hide elements by ID and log the action
function hideElementById(id) {
var element = document.getElementById(id);
if (element) {
element.style.display = "none";
console.log(id + " found and hidden on DOM load");
} else {
console.log(id + " not found on DOM load");
}
}
// Hide elements on initial load
hideElementById("product_configure_form");
hideElementById("header-wishlist");
hideElementById("header-fancy-cart");
// Create a MutationObserver to hide elements if they are dynamically added
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.type === "childList") {
hideElementById("product_configure_form");
hideElementById("header-wishlist");
hideElementById("header-fancy-cart");
}
});
});
observer.observe(document.body, { childList: true, subtree: true });
console.log("MutationObserver set up to monitor DOM changes");
});