Menu
Your Cart

Contact Us

If you have any questions, suggestions, or need further assistance, please feel free to contact us. We would love to hear from you!

Email: service@tovetz.com
Company Name: GREAT WINDMILL NETWORK TECHNOLOGY SARL
Company Address: 254,RUE VENDOME 69003 LYON

Thank you for reaching out! we will get back to you as soon as possible.


Let me know if you'd like it tailored for a specific industry or company!

$(document).ready(function() { const interval = setInterval(function() { const $element = $('.page-title span'); if (!$element.length) return; const text = $element.text(); if (text && text.includes('(0.00kg)')) { $element.text(text.replace('(0.00kg)', '').trim()); clearInterval(interval); // 找到后停止轮询 } }, 100); // 每100ms检查一次 });