jQuery(document).ready(function() { container = jQuery('#cartwidget') el = ' (0) €0,00 '; if ( container.length ) { container.html(el); var link = container.find('a[href]').first(); if (link.length) { try { var cartUrl = new URL(link.attr('href'), window.location.href); if (cartUrl.host !== window.location.host) { cartUrl.host = window.location.host; cartUrl.protocol = window.location.protocol; link.attr('href', cartUrl.pathname + cartUrl.search + cartUrl.hash); } } catch (e) {} } } });