Neuvition, Inc

4655 Old lronsides Dr.,Suite 290,Santa Clara,CA 95054

Suzhou Neuvition Technology Co., Ltd.

+86 0512-63259560

2nd Floor, Building No.6, Technology and Innovation Park,558Fenhu Road, Wujiang

Neuvition Technology (Xiamen) Co., Ltd.

+86 0512-63259560

2nd Floor, 16 Wanghai Road, Xiamen Software Park II, Xiamen

Contact Us

If you have any questions or suggestions, please leave a message, we will get in touch with you within 24 hours!

Phone:+1 888-487-8667

Corporate vision:Better vision for smarter future
✔︎
// 提交订阅 $("#btn-subscribe").click(function () { let email = $("#email").val(); if (email == '') { alert('This email is required'); return false } $.ajax({ type: 'post', url: 'https://system.neuvition.cn/api/customer/en', data: { company: 'subscribe customer', email: email, json: jsonStr, message: 'subscribe message', }, cache: false, dataType: 'json', success: function (result) { alert('Successfully Subscribed!'); }, error: function (data) { console.log("err"); } }); console.log(email) })