Sterling Silver Elongated Heart Necklace Accented With Pave Cubic Zirconia On A 16-18" Chain. Available In Your Choice Of Rhodium Or 18 Karat Gold Pla...More
Sterling Silver Elongated Heart Necklace Accented With Pave Cubic Zirc...
Sterling Charm Pendant Featuring A Pink Enamel Heart, Fresh Water Pearl & Bar Of Cubic Zirconia. Available In Your Choice Of Rhodium Or 18 Karat Gold ...More
Sterling Charm Pendant Featuring A Pink Enamel Heart, Fresh Water Pear...
Platinum Classic Wedding Band Featuring A Polish Finish.
Available Widths: 2mm, 3mm, 4mm, 5mm, 6mm
Available Sizes: 6, 7, 9, 10
Don't see what y...More
Platinum Classic Wedding Band Featuring A Polish Finish.
Available ...
Diamond Fashion Ring In 14 Karat Rose Gold Featuring 2=1.80ct Pear Shaped Diamonds OP In Colour VS2 In Clarity With A Good Cut Accented By 48=0.24ctw ...More
Diamond Fashion Ring In 14 Karat Rose Gold Featuring 2=1.80ct Pear Sha...
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");
});