These delicate keeper hoops measure 1mm wide, and are available in white or yellow 10k gold.
They are called "Keepers" because you can always keep th...More
These delicate keeper hoops measure 1mm wide, and are available in whi...
14 Karat Yellow Gold Classic Wedding Band.
Available Widths: 1.5mm, 2mm, 3mm
Available Sizes: 5, 6, 7
Don't see what your looking for? Come in and ...More
10 Karat Yellow Gold Classic Wedding Band Featuring A Polish Finish.
Available Widths: 1.5mm, 2mm, 3mm
Available Sizes: 5, 6, 7
Don't see what yo...More
10 Karat Yellow Gold Classic Wedding Band Featuring A Polish Finish. ...
This compass set solitaire pendant is sure to add some sparkle to your day! Featuring one round brilliant cut diamond, it is available in your choice ...More
This compass set solitaire pendant is sure to add some sparkle to your...
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");
});