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. ...
14 Karat Rose Gold Classic Wedding Band.
Available Widths: 1.5mm- 6mm
Available Sizes: 5-7, 9-11
Don't see what your looking for? Come in and see ...More
14 Karat Rose Gold Classic Wedding Band.
Available Widths: 1.5mm- 6m...
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 ...
14 Karat White Gold Classic Wedding Band Featuring A Polish Finish.
Available Widths: 1.5mm, 2mm, 3mm
Available Sizes: 5, 6, 7
Don't see what you...More
14 Karat White Gold Classic Wedding Band Featuring A Polish Finish.
...
14k Whit e Gold Curved Band with 3=0.20ctw Center Pear Shaped Diamonds FG in Colour VS2-SI1 in Clarity & 4=0.10ctw Round Brilliant Cut Diamonds FG in ...More
14k Whit e Gold Curved Band with 3=0.20ctw Center Pear Shaped Diamonds...
14 Karat Yellow Gold Classic Wedding Band Featuring A Polish Finish.
Available Widths: 4mm, 5mm, 6mm
Available Sizes: 9, 10, 11
Don't see what yo...More
14 Karat Yellow Gold Classic Wedding Band Featuring A Polish Finish. ...
10 Karat White Gold Classic Wedding Band.
Available Widths: 4mm, 5mm, 6mm
Available Sizes: 9, 10, 11
Don't see what your looking for? Come in and s...More
10 Karat White Gold Classic Wedding Band.
Available Widths: 4mm, 5mm,...
10 Karat White 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 s...More
10 Karat White Gold Classic Wedding Band.
Available Widths: 1.5mm, 2m...
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");
});