SignatureGem® LCD 1×5 is Topaz’s advanced, more durable LCD (4.4”W x 1.3″L) electronic signature pad that displays “electronic ink” under the pen tip during signing. The wide, rugged signing surface make this a versatile pad for the most demanding applications.
jQuery(function($) {
// Monitor changes in the WooCommerce message area
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
var message = $('.woocommerce-message').text();
if (message.includes("has been added to your cart")) {
console.log("Success message detected - Redirecting to cart...");
setTimeout(function() {
window.location.href = wc_add_to_cart_params.cart_url; // Redirect to Cart Page
}, 1000); // Short delay to allow banner to appear before redirecting
}
});
});
// Observe WooCommerce notices for new messages
var targetNode = document.body;
var config = { childList: true, subtree: true };
observer.observe(targetNode, config);
});