CINXE.COM

Proteintech Product Reviews | Proteintech Group

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Cache-Control" content="no-cache" /> <meta http-equiv="Expires" content="0" /> <title> Proteintech Product Reviews | Proteintech Group </title> <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="twitter:card" content="summary_large_image"> <meta id="metaDescription" name="description" content="Share your feedback with the research community and receive an Amazon gift card or discount on your next order." /> <meta property="og:description" content="Share your feedback with the research community and receive an Amazon gift card or discount on your next order." /> <meta name="keywords" content="Proteintech, antibody, review, feedback, submit" /> <meta property="og:title" content="Proteintech Product Reviews" /> <meta property="og:url" content="https://www.ptglab.com/news/blog/proteintech-product-reviews/" /> <meta property="og:image" content="https://www.ptglab.com/media/z3ja1twz/support_service-qs_single-card_new_alt.jpg" /><meta property="og:type" content="article"> <meta name="robots" content="noindex,nofollow"> <link rel="alternate" hreflang="en" href="https://www.ptglab.com/news/blog/proteintech-product-reviews/" /> <link rel="alternate" hreflang="x-default" href="https://www.ptglab.com/news/blog/proteintech-product-reviews/" /> <link rel="alternate" hreflang="zh" href="https://www.ptgcn.com/news/blog/proteintech-product-reviews/" /> <link rel="alternate" hreflang="ja" href="https://www.ptglab.co.jp/news/blog/proteintech-product-reviews/" /> <link rel="canonical" href="https://www.ptglab.com/news/blog/proteintech-product-reviews/" /> <link rel="shortcut icon" href="/favicon.ico" type="text/x-component"> <link rel="stylesheet" href="/css/styles.css?v=20240724"> <link rel="stylesheet" href="/css/flickity.min.css"> <!-- OneTrust Cookies Consent Notice start for ptglab.com --> <script type="text/javascript" src="https://cdn.cookielaw.org/consent/c333639f-7648-4ca0-bbac-ed6dc7adc87a/OtAutoBlock.js" ></script> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="c333639f-7648-4ca0-bbac-ed6dc7adc87a" ></script> <script type="text/javascript"> function OptanonWrapper() { } </script> <!-- OneTrust Cookies Consent Notice end for ptglab.com --> <script src="/scripts/jquery-2.2.4.min-jzy.js" type="text/javascript"></script> <script src="/scripts/vendor/jquery.cookie.js" type="text/javascript"></script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "NewsArticle", "headline": "Proteintech Product Reviews", "datePublished": "2023-08-23", "dateModified": "2023-08-23" } </script> <script> (function (w, d, s, l, i) { w[l] = w[l] || []; w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f); })(window, document, 'script', 'dataLayer', 'GTM-MXRFCLN');</script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-WHTMJSBVL2"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-WHTMJSBVL2'); </script> <!-- countryselector-dropdown start --> <script> $(document).ready(function () { var isExpanded = false; // 初始状态为折叠 $('.countryselector-dropdown').on('click', function (event) { event.stopPropagation(); $('.navigation').css('z-index', '14') var $searchBox = $('.searchBox-countryselector'); if (isExpanded) { $('.navigation').css('z-index', '13') $searchBox.hide(); // 显示搜索框 $searchBox.slideUp(); // 如果已经展开,则折叠 } else { $searchBox.show(); // 显示搜索框 $searchBox.slideDown(); // 如果已经折叠,则展开 } isExpanded = !isExpanded; // 切换状态 $('.search-countryselector').focus(); $(".countryselector-noResult").hide() }) var countries = ["Vietnam","United States", "United Kingdom", "United Arab Emirates", "Turkey", "Thailand", "Taiwan", "Switzerland", "Sweden", "Sri Lanka", "Spain", "South Africa", "Slovenia", "Slovakia", "Singapore", "Serbia", "Saudi Arabia", "Romania", "Qatar", "Portugal", "Poland", "Other Countries", "Oman", "Norway", "New Zealand", "Netherlands", "Morocco", "Montenegro", "Monaco", "Moldova", "Malta", "Malaysia", "Macedonia", "Macau", "Luxembourg", "Lithuania", "Lebanon", "Latvia", "Kuwait", "Korea", "Japan", "Italy", "Israel", "Ireland", "Indonesia", "India", "Iceland", "Hungary", "Hong Kong", "Greece", "Germany", "Georgia", "France", "Finland", "Estonia", "Egypt", "Denmark", "Czech Republic", "Cyprus", "Croatia", "Colombia", "China", "Chile", "Canada", "Bulgaria", "Brunei", "Brazil", "Bosnia and Herzegovina", "Belgium", "Bahrain", "Austria", "Australia", "Armenia", "Argentina", "Algeria", "Albania"]; // 这里填充所有国家 $(".search-countryselector").keyup(function () { var searchTerm = $(this).val().toLowerCase(); if (searchTerm.length >= 1) { $(".suggestions-countryselector").empty(); // 清空上次的结果 // startsWith $.each(countries, function (index, value) { if (value.toLowerCase().indexOf(searchTerm) > -1) { $(".suggestions-countryselector").append("<div>" + value + "</div>"); } }); //搜索下拉有结果时 展开国家 if ($('.suggestions-countryselector div').length > 0) { $('.suggestions-countryselector').show(); $(".countryselector-noResult").hide() } else { $('.suggestions-countryselector').hide(); } } else { $('.suggestions-countryselector').hide(); } //搜索下拉无结果时 if ($(".suggestions-countryselector div").length < 1) { $(".countryselector-noResult").show() } }); //选中了哪一个国家进行填充输入框和 跳转 $('.suggestions-countryselector').on('click', 'div', function () { //选中的country =$(this).text() localStorage.setItem("country", $(this).text()); $.cookie('ship_country', $(this).text(), { CookieOpt: { expires: 365, path: "/" }, Language: "en" }); $('.search-countryselector').val($(this).text()); $('.suggestions-countryselector').hide(); if (window.location.href.indexOf("results") > 0) { var arr = new Array(); $.each($('.search-result'), function (i, o) { var me = $(o); const ptgno = me.data("ptgno"); const catalognos = me.data("catalogno"); const mode = me.data("mode"); arr.push(`${ptgno}|${mode}|${catalognos}`); }); window.getPrice(arr); } }); //点击其它地方关闭弹框 $(document).on('click', function (event) { $('.suggestions-countryselector').hide(); var container = $(".searchBox-countryselector"); if (!container.is(event.target) && container.has(event.target).length === 0) { $('.searchBox-countryselector').hide(); isExpanded = !isExpanded $('.navigation').css('z-index', '13') } }); $('.countryselector-dropdown,.search-countryselector,.suggestions-countryselector').on('click', function (event) { event.stopPropagation(); // 阻止关闭按钮的点击事件冒泡 }); }); </script> <!-- countryselector-dropdown over--> </head> <body id="top" data-pagetype="home"> <main> <nav class="navigation"> <div class="container-xl"> <div class="navigation__backdrop"></div> <div class="navigation__offcanvas"> <div class="navigation__offcanvas__close toggleMobileNav" style="display: block;"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16"> <path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"></path> </svg> </div> <!-- First_level --> <div class="navigation__panel navigation__panel__active" data-panel-id="0"> <ul class="list-unstyled has-arrow"> <li> <a href="" data-panel-dest="0,0"> <h3>Products</h3> </a> </li> <li> <a href="" data-panel-dest="0,1"> <h3>Applications</h3> </a> </li> <li> <a href="" data-panel-dest="0,2"> <h3>cGMP Proteins</h3> </a> </li> <li> <a href="" data-panel-dest="0,6"> <h3>Support</h3> </a> </li> <li> <a href="" data-panel-dest="0,3"> <h3>Services</h3> </a> </li> <li> <a href="" data-panel-dest="0,4"> <h3>Promotions</h3> </a> </li> <li> <a href="" data-panel-dest="0,5"> <h3>About Us</h3> </a> </li> </ul> <div class=""> <select class="language-select" onchange="window.location=this.options[this.selectedIndex].value;"> <option name="" value="/" selected="">English</option> <option name="" value="https://www.ptglab.co.jp/">Japanese</option> <option name="" value="https://www.ptgcn.com/">Chinese</option> </select> </div> </div> <!-- First_level --> <!-- Second_level --> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0"> <h5>Back</h5> </a> </div> <ul class="list-unstyled has-arrow"> <li> <a href="#" data-panel-dest="0,0,0"> <h3>Antibodies</h3> </a> </li> <li> <a href="#" data-panel-dest="0,0,1"> <h3>Immunoassays</h3> </a> </li> <li> <a href="#" data-panel-dest="0,0,2"> <h3>Cytokines and Growth Factors</h3> </a> </li> <li> <a href="#" data-panel-dest="0,0,3"> <h3>Nanobody-based Reagents</h3> </a> </li> <li> <a href="#" data-panel-dest="0,0,4"> <h3>Supporting Tools and Reagents</h3> </a> </li> <li> <a href="#" data-panel-dest="0,0,5"> <h3>Research Area</h3> </a> </li> <li> <a href="#" data-panel-dest="0,0,6"> <h3>Genomics</h3> </a> </li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,1"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Applications</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/applications/western-blot/">Western Blot</a></li> <li><a href="/applications/immunohistochemistry/">Immunohistochemistry</a></li> <li><a href="/applications/immunofluorescence/">Immunofluorescence</a></li> <li><a href="/applications/immunoprecipitation/">Immunoprecipitation</a></li> <li><a href="/products/flow-cytometry-antibodies/">Flow Cytometry</a></li> <li><a href="/products/elisa-kits/">ELISA</a></li> <li><a href="/products/magnetic-cell-separation-systems/">Cell Separation</a></li> <li><a href="/products/humankine-human-cell-expressed-proteins/">Cell Regulation</a></li> <li><a href="/applications/affinity-purification/">Protein Purification</a></li> <li><a href="/applications/chromatin-immunoprecipitation/">Chromatin Immunoprecipitation</a></li> <li><a href="/applications/live-cell-imaging/">Live Cell Imaging</a></li> <li><a href="/products/flexable-antibody-labeling-kits/">Antibody Labeling<sup style="color: red;">New</sup></a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,2"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>cGMP Proteins</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/products/gmp-grade-cytokines-growth-factors/">cGMP Recombinant Cytokines and Growth Factors</a></li> <li><a href="/products/humankine-human-cell-expressed-proteins/#Comparison">Preclinical vs cGMP</a></li> <li><a href="/news/company-news/new-gmp-laboratory/">cGMP Facility in Chicago, IL</a></li> <li><a href="/products/gmp-grade-cytokines-growth-factors/#cGMP">Custom Order Request</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,3"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Services</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/products/custom-order-requests/">Custom Order Request</a></li> <li><a href="/products/custom-antibody-services/">Custom Antibody Services</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,4"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Promotions</h3> </div> <ul class="list-unstyled navigation__panel__links" id="promo-mobile-panel"> <li><a href="/promotions/antibody_upgrade_search_engine/">Antibody Upgrade Search Engine</a></li> <li><a href="/promotions/new-lab-promotion/">New Lab Promotion</a></li> <li><a href="/promotions/publication-promotion/">Publication Promotion</a></li> <li><a href="/promotions/newsletter-sign-up/">Newsletter Sign Up</a></li> <li><a href="/promotions/trial-size-antibodies/">Trial Size Antibodies</a></li> <li><a href="/promotions/149-control-antibodies/">$149 Control Antibodies</a></li> <li><a href="/nano-trap-free-sample/">Nano-Trap Free Sample</a></li> <li><a href="/promotions/antibody-trial-pack/">Antibody Trial Pack</a></li> <li><a href="/promotions/customer-referral-program/">Customer Referral Program</a></li> <li><a href="/promotions/product-of-the-month-20-off/">20% off product of the month</a></li> <li><a href="/promotions/buy-two-get-one-free/">Buy two, get one free</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,5"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>About Us</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/contact/">Contact Us</a></li> <li><a href="/about-us/careers/">Careers</a></li> <li><a href="/about-us/company-profile/">Company Profile</a></li> <li><a href="/about-us/the-proteintech-story/">The Proteintech Story</a></li> <li><a href="/news/company-news/proteintech-group-to-acquire-manufacturer-of-human-cell-expressed-proteins-humanzyme/">Humanzyme Acquisition</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/about/">About ChromoTek</a></li> <li><a href="/products/about-proteintech-genomics/">About Proteintech Genomics</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,6"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Support</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/support/product-specific-protocols/">Product-specific protocols</a></li> <li><a href="/support/protocols/">Standard Protocols</a></li> <li><a href="/videos/">Videos</a></li> <li><a href="/news/blog/">Blogs</a></li> <li><a href="/support/resources/">Resources</a></li> <li><a href="/support/guarantee/">Product Guarantee</a></li> <li><a href="/support/sirna-knockdown/">siRNA Knockdown</a></li> <li><a href="/support/technical-faqs/">Technical FAQs</a></li> <li><a href="/support/service-faqs/">Service FAQs</a></li> <li><a href="/news/company-news/">Company News</a></li> <li><a href="/news/events/">Events</a></li> <li><a href="/products/featured-products/">Featured Products</a></li> <li><a href="/support/early-career-researcher-hub/">Early Career Researcher Hub</a></li> <li><a href="/support/coralite-fluorescent-dyes/">CoraLite Plus Fluorescent Dyes</a></li> </ul> </div> <!-- Second_level --> <!-- Third_level --> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0,0"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0,0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Antibodies</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/products/primary-antibodies/">Primary Antibodies</a></li> <li><a href="/products/secondary-antibodies/">Secondary Antibodies</a></li> <li><a href="/products/recombinant-antibodies/">Recombinant Monoclonal Antibodies</a></li> <li><a href="/products/coralite-fluorescent-dye-conjugated-antibodies/">Immunofluorescence Antibodies (conjugated)</a></li> <li><a href="/products/flow-cytometry-antibodies/">Flow Cytometry Antibodies</a></li> <li><a href="/products/neutralizing-antibodies/">Neutralizing Antibodies</a></li> <li><a href="/products/tagcontrol-antibodies/">Tag and Loading Control Antibodies</a></li> <li><a href="/products/isotype-control/">Isotype Controls</a></li> <li><a href="/products/flexable-antibody-labeling-kits/">Antibody Labeling Kits</a></li> <li><a href="/results?q=sampler+kit">Antibody Sampler Kits</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0,1"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0,0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Immunoassays</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/products/elisa-kits/">ELISA Kits</a></li> <li><a href="/products/matched-antibody-pairs/">Matched Antibody Pairs<sup style="color: red;">New</sup></a></li> <li><a href="/applications/immunohistochemistry/#IHCProducts">IHC Kits</a></li> <li><a href="/products/magnetic-cell-separation-systems/">Magnetic Cell Separation Systems</a></li> <li><a href="/results?q=cell+health+assay">Cell Health & Proliferation Kits​</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0,2"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0,0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Cytokines and Growth Factors</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/products/research-grade-cytokines-growth-factors/">Research Grade</a></li> <li><a href="/products/gmp-grade-cytokines-growth-factors/">cGMP Grade</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0,3"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0,0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Nanobody-based Reagents</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/products/chromotek-nanobody-based-reagents/nano-traps/">Nano-Traps</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-secondaries/">Nano-Secondary reagents</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/chromobodies/">Chromobodies</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-boosters-and-nano-labels/">Nano-Boosters & Nano-Labels</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-caps/">Nano-Caps</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-captureligands/">Nano-CaptureLigands</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nanobodies/">Nanobodies/VHHs</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/spot-tag-systems/">Spot-Tag System</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0,4"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0,0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Supporting Tools & Reagents</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/results?q=protein+ladder">Protein Ladders</a></li> <li><a href="/products/e-coli-expressed-fusion-proteins/">Fusion Proteins</a></li> <li><a href="/products/signalbright-chemiluminescent-substrate/">Chemiluminescent Substrate</a></li> <li><a href="/results?q=fix+and+perm">Fixation and Permeabilization</a></li> <li><a href="/results?category=&q=viability+dyes&target=">Viability Dyes</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0,5"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0,0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Research Area</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/products/autophagy-and-cell-death/">Autophagy and Cell Death</a></li> <li><a href="/products/featured-products/coronavirus-covid-19-products/">COVID-19 Related</a></li> <li><a href="/products/cancer/">Cancer</a></li> <li><a href="/products/cardiovascular/">Cardiovascular</a></li> <li><a href="/products/cell-division-and-proliferation/">Cell Division and Proliferation</a></li> <li><a href="/products/cell-and-gene-therapy-solution/">Cell and Gene Therapy</a></li> <li><a href="/products/developmental-bio/">Developmental Biology</a></li> <li><a href="/products/epigenetics/">Epigenetics</a></li> <li><a href="/products/immunology/">Immunology</a></li> <li><a href="/products/metabolism/">Metabolism</a></li> <li><a href="/products/neuroscience/">Neuroscience</a></li> <li><a href="/products/featured-products/organelle-markers/">Organelle Markers</a></li> <li><a href="/products/signal-transduction/">Signal Transduction</a></li> <li><a href="/products/stem-cells/">Stem Cells</a></li> </ul> </div> <div class="navigation__panel navigation__panel__pre" data-panel-id="0,0,6"> <div class="navigation__panel__back"> <a href="#" data-panel-dest="0,0"> <h5>Back</h5> </a> </div> <div class="navigation__panel__title"> <h3>Genomics</h3> </div> <ul class="list-unstyled navigation__panel__links"> <li><a href="/results?category=&amp;q=cocktails&amp;target=">Antibody Cocktails</a></li> <li><a href="/results?category=&amp;q=5CFLX&amp;target=">Oligo Conjugated Primary Antibodies</a></li> </ul> </div> <!-- Third_level --> </div> <div class="navigation__container"> <div class="navigation__logo"> <a href="/"> <img src="/img/logos/Logo_Ptg_Main.png" /> </a> </div> <div class="navigation__nav"> <ul class="inline-list m-0 p-0"> <li class="list-inline-item navigation__nav__item"> <a class=" navigation__nav__link">Products</a> <div class="navigation__dropdown" id="product-panel"> <div class="container p-5"> <div class="row row justify-content-center"> <div class="col-4"> <div class="row"> <div class="col-6"> <div class="navigation__dropdown__title"> <p class="large"><a href="/products/antibodies-and-immunoassays/#Antibodies">Antibodies</a></p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/primary-antibodies/">Primary Antibodies</a></li> <li><a href="/products/secondary-antibodies/">Secondary Antibodies</a></li> <li><a href="/products/recombinant-antibodies/">Recombinant Monoclonal Antibodies</a></li> <li class="mt-1 mb-1"><a href="/products/coralite-fluorescent-dye-conjugated-antibodies/">Immunofluorescence Antibodies (conjugated)</a></li> <li class="mt-1 mb-1"><a href="/products/flow-cytometry-antibodies/">Flow Cytometry Antibodies</a></li> <li><a href="/products/neutralizing-antibodies/">Neutralizing Antibodies</a></li> <li><a href="/products/tagcontrol-antibodies/">Tag and Loading Control Antibodies</a></li> <li><a href="/products/isotype-control/">Isotype Controls</a></li> <li><a href="/products/flexable-antibody-labeling-kits/">Antibody Labeling Kits</a></li> <li><a href="/results?q=sampler+kit">Antibody Sampler Kits</a></li> </ul> </div> <div class="col-6"> <div class="navigation__dropdown__title"> <p class="large"><a href="/products/antibodies-and-immunoassays/#Immunoassays">Immunoassays</a></p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/elisa-kits/">ELISA Kits</a></li> <li><a href="/products/matched-antibody-pairs/">Matched Antibody Pairs<sup style="color: red;">New</sup></a></li> <li><a href="/applications/immunohistochemistry/#IHCProducts">IHC Kits</a></li> <li><a href="/products/magnetic-cell-separation-systems/">Magnetic Cell Separation Systems</a></li> <li><a href="/results?q=cell+health+assay">Cell Health & Proliferation Kits​</a></li> </ul> </div> </div> </div> <div class="col-2"> <div class="navigation__dropdown__title"> <p class="large"><a href="/products/humankine-human-cell-expressed-proteins/">Cytokines and Growth Factors</a></p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/research-grade-cytokines-growth-factors/">Research Grade</a></li> <li><a href="/products/gmp-grade-cytokines-growth-factors/">cGMP Grade</a></li> </ul> </div> <div class="col-2"> <div class="navigation__dropdown__title"> <p class="large"><a href="/products/chromotek-nanobody-based-reagents/">Nanobody-based Reagents</a></p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/chromotek-nanobody-based-reagents/nano-traps/">Nano-Traps</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-secondaries/">Nano-Secondary reagents</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/chromobodies/">Chromobodies</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-boosters-and-nano-labels/">Nano-Boosters & Nano-Labels</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-caps/">Nano-Caps</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nano-captureligands/">Nano-CaptureLigands</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/nanobodies/">Nanobodies/VHHs</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/spot-tag-systems/">Spot-Tag System</a></li> </ul> </div> <div class="col-2"> <div class="navigation__dropdown__title"> <p class="large">Supporting Tools and Reagents</p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/results?q=protein+ladder">Protein Ladders</a></li> <li><a href="/products/e-coli-expressed-fusion-proteins/">Fusion Proteins</a></li> <li><a href="/products/signalbright-chemiluminescent-substrate/">Chemiluminescent Substrate</a></li> <li><a href="/results?q=fix+and+perm">Fixation and Permeabilization</a></li> <li><a href="/results?category=&q=viability+dyes&target=">Viability Dyes</a></li> </ul> </div> <div class="col-2"> <div class="navigation__dropdown__title"> <p class="large">Research Area</p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/autophagy-and-cell-death/">Autophagy and Cell Death</a></li> <li><a href="/products/featured-products/coronavirus-covid-19-products/">COVID-19 Related</a></li> <li><a href="/products/cancer/">Cancer</a></li> <li><a href="/products/cardiovascular/">Cardiovascular</a></li> <li><a href="/products/cell-division-and-proliferation/">Cell Division and Proliferation</a></li> <li><a href="/products/cell-and-gene-therapy-solution/">Cell and Gene Therapy</a></li> <li><a href="/products/developmental-bio/">Developmental Biology</a></li> <li><a href="/products/epigenetics/">Epigenetics</a></li> <li><a href="/products/immunology/">Immunology</a></li> <li><a href="/products/metabolism/">Metabolism</a></li> <li><a href="/products/neuroscience/">Neuroscience</a></li> <li><a href="/products/featured-products/organelle-markers/">Organelle Markers</a></li> <li><a href="/products/signal-transduction/">Signal Transduction</a></li> <li><a href="/products/stem-cells/">Stem Cells</a></li> </ul> </div> </div> <div class="row"> <div class="col-4"> <hr> <a href="/products/antibodies-and-immunoassays/"><img src="/img/logos/Logo_Proteintech_Menu.png" width="135"></a> </div> <div class="col-2"> <hr> <a href="/products/humankine-human-cell-expressed-proteins/"><img src="/img/logos/Logo_Humankine_Menu.png" width="135"></a> </div> <div class="col-2"> <hr> <a href="/products/chromotek-nanobody-based-reagents/"><img src="/img/logos/Logo_Chromotek_Menu.png" width="135"></a> </div> <div class="col-2"> <hr> </div> <div class="col-2"> <hr> </div> </div> </div> </div> </li> <li class="list-inline-item navigation__nav__item"> <a class=" navigation__nav__link">Applications</a> <div class="navigation__dropdown"> <div class="container p-5"> <div class="row justify-content-center"> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/applications/western-blot/">Western Blot</a></li> <li><a href="/products/magnetic-cell-separation-systems/">Cell Separation</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/applications/immunohistochemistry/">Immunohistochemistry</a></li> <li><a href="/products/humankine-human-cell-expressed-proteins/">Cell Regulation</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/applications/immunofluorescence/">Immunofluorescence</a></li> <li><a href="/applications/affinity-purification/">Protein Purification</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/applications/immunoprecipitation/">Immunoprecipitation</a></li> <li><a href="/applications/chromatin-immunoprecipitation/">Chromatin Immunoprecipitation</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/flow-cytometry-antibodies/">Flow Cytometry</a></li> <li><a href="/applications/live-cell-imaging/">Live Cell Imaging</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/elisa-kits/">ELISA</a></li> <li><a href="/products/flexable-antibody-labeling-kits/">Antibody Labeling<sup style="color: red;">New</sup></a></li> </ul> </div> </div> </div> </div> </li> <li class="list-inline-item navigation__nav__item"> <a class="navigation__nav__link">cGMP Proteins</a> <div class="navigation__dropdown"> <div class="container p-5"> <div class="row justify-content-center"> <div class="col-4"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/gmp-grade-cytokines-growth-factors/">cGMP Recombinant Cytokines and Growth Factors</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/humankine-human-cell-expressed-proteins/#Comparison">Preclinical vs cGMP</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/news/company-news/new-gmp-laboratory/">cGMP Facility in Chicago, IL</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/gmp-grade-cytokines-growth-factors/#cGMP">Custom Order Request</a></li> </ul> </div> </div> </div> </div> </li> <li class="list-inline-item navigation__nav__item"> <a class="navigation__nav__link">Support</a> <div class="navigation__dropdown" id="support-panel"> <div class="container p-5"> <div class="row justify-content-center"> <div class="col-4"> <div class="row"> <div class="col-6"> <div class="navigation__dropdown__title"> <p class="large">Protocols</p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/support/product-specific-protocols/">Product-specific protocols</a></li> <li><a href="/support/protocols/">Standard protocols</a></li> <li><br></li> <li>By Application</li> <li><a href="/support/western-blot-protocol/western-blot-protocol/">WB</a></li> <li><a href="/support/immunohistochemistry-protocol/immunohistochemistry-overview/">IHC</a></li> <li><a href="/support/immunofluorescence-protocol/immunofluorescence-introduction/">IF</a></li> <li><a href="/support/immunoprecipitation-protocol/introduction-to-immunoprecipitation/">IP/ChIP</a></li> <li><a href="/support/flow-cytometry-protocol/introduction-to-flow-cytometry/">Flow Cytometry</a></li> <li><a href="/support/cell-culture-protocol/introduction-to-cell-culture/">Cell Culture</a></li> <li><a href="/support/flexable-antibody-labeling-kits-protocol/">Antibody Labeling<sup style="color: red;">New</sup></a></li> <li><a href="/support/elisa-calculator.htm">ELISA calculator</a></li> </ul> </div> <div class="col-6"> <div class="navigation__dropdown__title"> <p class="large">Others</p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/support/guarantee/">Product Guarantee</a></li> <li><a href="/videos/">Videos</a></li> <li><a href="/support/resources/">Resources</a></li> <li><a href="/news/blog/pathway-poster-library/">Pathway Posters</a></li> <li><a href="/workshops/">Technical Workshops</a></li> <li><a href="/news/blog/proteintech-product-reviews/">Review a Product</a></li> <li><a href="/support/technical-faqs/">Technical FAQs</a></li> <li><a href="/support/service-faqs/">Service FAQs</a></li> <li><a href="/support/glossary/">Glossary</a></li> <li><a href="/products/replace-santa-cruz-antibodies/">Replace Santa Cruz</a></li> <li><a href="/products/featured-products/">Featured Products</a></li> <li><a href="/support/early-career-researcher-hub/">Early Career Researcher Hub</a></li> <li><a href="/support/coralite-fluorescent-dyes/">CoraLite Plus Fluorescent Dyes</a></li> </ul> </div> </div> </div> <div class="col-2"> <div class="navigation__dropdown__title"> <p class="large">News</p> </div> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/news/blog/">Blogs</a></li> <li><a href="/news/events/">Events</a></li> <li><a href="/news/publication-spotlight/">Publication Spotlight</a></li> <li><a href="/news/scientist-spotlight/">Scientist Spotlight</a></li> <li><a href="/news/company-news/">Company News</a></li> </ul> </div> <div class="row"> <div class="row justify-content-center"> <div class="col-2"> <hr /> </div> <div class="col-2"> <hr /> </div> <div class="col-2"> <hr /> </div> </div> </div> </div> </div> </div> </li> <li class="list-inline-item navigation__nav__item"> <a class="navigation__nav__link">Services</a> <div class="navigation__dropdown"> <div class="container p-5"> <div class="row justify-content-center"> <div class="col-4"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/custom-order-requests/">Custom Order Request</a></li> </ul> </div> <div class="col-4"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/products/custom-antibody-services/">Custom Antibody Services</a></li> </ul> </div> </div> </div> </div> </li> <li class="list-inline-item navigation__nav__item"> <a class="navigation__nav__link">Promotions</a> <div class="navigation__dropdown"> <div class="container p-5"> <div class="row justify-content-center" id="promo-panel"> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/promotions/antibody_upgrade_search_engine/">Antibody Upgrade</a></li> <li><a href="/promotions/publication-promotion/">Publication Promotion</a></li> <li><a href="/promotions/newsletter-sign-up/">Newsletter Sign Up</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/promotions/new-lab-promotion/">New Lab Promotion</a></li> <li><a href="/promotions/trial-size-antibodies/">Trial Size Antibodies</a></li> <li><a href="/promotions/149-control-antibodies/">$149 Control Antibodies</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/nano-trap-free-sample/">Nano-Trap Free Sample</a></li> </ul> </div> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/promotions/customer-referral-program/">Customer Referral Program</a></li> </ul> </div> </div> </div> </div> </li> <li class="list-inline-item navigation__nav__item"> <a class="navigation__nav__link">About Us</a> <div class="navigation__dropdown"> <div class="container p-5"> <div class="row justify-content-center"> <div class="col-2"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/about-us/company-profile/">Company Profile</a></li> <li><a href="/about-us/careers/">Careers</a></li> <li><a href="/contact/">Contact Us</a></li> </ul> </div> <div class="col-3"> <ul class="list-unstyled navigation__dropdown__links"> <li><a href="/about-us/the-proteintech-story/">The Proteintech Story</a></li> <li><a href="/news/company-news/proteintech-group-to-acquire-manufacturer-of-human-cell-expressed-proteins-humanzyme/">Humanzyme Acquisition</a></li> <li><a href="/products/chromotek-nanobody-based-reagents/about/">About ChromoTek</a></li> <li><a href="/products/about-proteintech-genomics/">About Proteintech Genomics</a></li> </ul> </div> </div> </div> </div> </li> </ul> </div> <div class="navigation__actions"> <div class="d-inline-flex d-lg-none"> <div style="padding-left: 70px;"></div> <div class="mt-4 m-2"> <a href="/account/"> <img src="/img/icons/Icon_User.svg"> </a> </div> <div class="mt-4 m-2"> <a href="/shoppingcart/"> <img src="/img/icons/Icon_Basket.svg" class="empty-basket" /> <img src="/img/icons/Icon_Basket_Full.svg" class="full-basket" hidden="" /> </a> </div> <div style="position: relative;" class="mt-4 m-2 countryselector-dropdown"> <a> <img src="https://www.ptglab.com/img/icons/earth.svg"> </a> <div class="searchBox-countryselector" style="display: none;"> <div>Country/Region selector</div> <input type="text" class="search-countryselector" placeholder="Search for a country/region"> <div class="suggestions-countryselector" style="display:none;"></div> <div class="countryselector-noResult" style="padding:5px">No results</div> </div> </div> <div class="mt-4 m-2"> <button type="button" class="toggleMobileNav"> <img src="/img/icons/Icon_Menu.svg" style="padding-top: 4px;"> </button> </div> </div> <div class="d-none d-lg-flex"> <a href="/account/"> <img src="/img/icons/Icon_User.svg"> </a> <a href="/shoppingcart/"> <img src="/img/icons/Icon_Basket.svg" class="empty-basket" /> <img src="/img/icons/Icon_Basket_Full.svg" class="full-basket" hidden="" /> </a> <button type="button" class="toggleMobileNav"> <img src="/img/icons/Icon_Menu.svg"> </button> <div style="position: relative;" class="countryselector-dropdown"> <a> <img src="https://www.ptglab.com/img/icons/earth.svg"> </a> <div class="searchBox-countryselector" style="display: none;"> <div>Country/Region selector</div> <input type="text" class="search-countryselector" placeholder="Search for a country/region"> <div class="suggestions-countryselector" style="display:none;"></div> <div class="countryselector-noResult" style="padding:5px">No results</div> </div> </div> <div class="d-none d-lg-flex"> <select class="language-select" onchange="window.location=this.options[this.selectedIndex].value;"> <option name="" value="/" selected="">English</option> <option name="" value="https://www.ptglab.co.jp/">Japanese</option> <option name="" value="https://www.ptgcn.com/">Chinese</option> </select> </div> </div> </div> </div> </div> </nav> <section class="search"> <div class="container-xl"> <div class="row"> <div class="col"> <form action="/results"> <div class="search__container"> <div class="search__category search__params rounded-search"> <button type="button" class="search__category__button"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16"> <path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" /> </svg> <span id="searchTerm">All</span> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" /> </svg> </button> <div class="search__dropdown search-category__dropdown"> <!-- Add some backend logic here to grab the querystring from url and update value/.active --> <input type="hidden" name="category" value=""> <ul class="list-unstyled m-0"> <li> <span data-params="query" title="All" data-category class="active"> All </span> </li> <li> <span data-landing="primary-antibodies" data-params="query" data-placeholder="Search Primary Antibodies" title="Primary Antibodies" data-category="antibody"> Primary Antibodies </span> </li> <li> <span data-landing="conjugated-antibodies-for-if" data-params="target, species-reactivity, conjugate" data-placeholder="Search Conjugated antibodies for IF" title="Conjugated Antibodies for IF" data-category="immunofluorescence conjugated"> Conjugated Antibodies for IF </span> </li> <li> <span data-landing="conjugated-antibodies-for-flow-cytometry" data-params="target, species-reactivity, conjugate" data-placeholder="Search Flow Cytometry Antibodies" title="Conjugated Antibodies for Flow Cytometry" data-category="conjugated fluorescent antibodies"> Conjugated Antibodies for FC </span> </li> <li> <span data-landing="secondary-antibodies" data-params="secondaryab-species, host, secondaryab-conjugate" data-placeholder="Search Secondary Antibodies" title="Secondary Antibodies" data-category="secondaryab"> Secondary Antibodies </span> </li> <li> <span data-landing="antibody-labeling-kits" data-params="compatible-species, flexable-conjugate" data-placeholder="Antibody Labeling Kits" title="Antibody Labeling Kits" data-category="flexable"> Antibody Labeling Kits<sub style="color: red;">New</sub> </span> </li> <li> <span data-landing="elisa-kits" data-params="target, species-reactivity" data-placeholder="Search ELISA Kits" title="ELISA Kits" data-category="elisakits"> ELISA Kits </span> </li> <li> <span data-landing="ihc-kits" data-params="query" data-placeholder="Search IHC kits" title="IHC Kits" data-category="ihc kit"> IHC Kits </span> </li> <li> <span data-landing="cell-separation-kits" data-params="query" data-placeholder="Search Magnetic Cell Separation Kits" title="Magnetic Cell Separation Kits" data-category="Cell separation"> Magnetic Cell Separation Kits </span> </li> <li> <span data-landing="cytokines-and-growth-factors" data-params="query" data-placeholder="Search Cytokines &amp; Growth Factors" title="Cytokines &amp; Growth Factors" data-category="humankine"> Cytokines &amp; Growth Factors </span> </li> <li> <span data-landing="neutralizing-antibodies" data-params="query" data-placeholder="Search Neutralizing/activating Antibodies" title="Neutralizing/activating Antibodies" data-category="NeutraAb"> Neutralizing/activating Antibodies </span> </li> <li> <span data-landing="nanobody-based-reagents" data-params="query" data-placeholder="Search Nanobody-based Reagents" title="Nanobody-based Reagents" data-category="nanobody"> Nanobody-based Reagents </span> </li> <li> <span data-params="query" data-placeholder="Search Accessory Products and Kits" title="Accessory Products and Kits" data-category="Accessory products"> Accessory Products and Kits </span> </li> <li> <span data-landing="fusion-protein" data-params="query" data-placeholder="Search Fusion Proteins" title="Fusion Proteins" data-category="fusion protein"> Fusion Proteins </span> </li> </ul> </div> </div> <div class="search__params search__input active" data-search-field="query"> <div class="search__params__container no-dd"> <input type="text" name="q" class="search__input__field search__input__query" autocomplete="off" placeholder="Search by target, catalog number or keyword" /> <div class="search__clear">&times;</div> </div> <div class="search__dropdown"> <div class="search__results"> <!-- filled by JS --> </div> </div> </div> <div class="search__params" data-search-field="target"> <div class="search__params__container no-dd"> <input type="text" name="target" class="search__input__field" autocomplete="off" placeholder="Search by target"> <div class="search__clear">×</div> </div> </div> <div class="search__params" tabindex="0" data-search-field="host"> <div class="search__params__container"> <div class="search-term-layout"> <div class="search-term-layout__term">Host</div> <div class="search-term-layout__count">0</div> </div> </div> <div class="search__dropdown"> <ul class="list-unstyled m-0"> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="host" value="Alpaca" id="host-alpaca"> <label class="form-check-label" for="host-Alpaca"> Alpaca </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="host" value="Donkey" id="host-donkey"> <label class="form-check-label" for="host-Donkey"> Donkey </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="host" value="Goat" id="host-goat"> <label class="form-check-label" for="host-goat"> Goat </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="host" value="Mouse" id="host-mouse"> <label class="form-check-label" for="host-mouse"> Mouse </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="host" value="Rabbit" id="host-rabbit"> <label class="form-check-label" for="host-rabbit"> Rabbit </label> </div> </li> </ul> <div class="search__dropdown__actions"> <button type="button" class="btn btn-sm btn-text search__dropdown__actions__clear">Clear</button> <button type="button" class="btn btn-sm btn-primary search__dropdown__actions__confirm">Confirm</button> </div> </div> </div> <div class="search__params" tabindex="0" data-search-field="secondaryab-species"> <div class="search__params__container"> <div class="search-term-layout"> <div class="search-term-layout__term">Species Reactivity</div> <div class="search-term-layout__count">0</div> </div> </div> <div class="search__dropdown"> <ul class="list-unstyled m-0"> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Chicken" id="species-reactivity-Chicken"> <label class="form-check-label" for="species-reactivity-Chicken"> Chicken </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Goat" id="species-reactivity-Goat"> <label class="form-check-label" for="species-reactivity-Goat"> Goat </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Guinea Pig" id="species-reactivity-Guinea-Pig"> <label class="form-check-label" for="species-reactivity-Guinea-Pig"> Guinea Pig </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Horse" id="species-reactivity-Horse"> <label class="form-check-label" for="species-reactivity-Horse"> Horse </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Human" id="species-reactivity-Human"> <label class="form-check-label" for="species-reactivity-Human"> Human </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Mouse" id="species-reactivity-Mouse"> <label class="form-check-label" for="species-reactivity-Mouse"> Mouse </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Rabbit" id="species-reactivity-Rabbit"> <label class="form-check-label" for="species-reactivity-Rabbit"> Rabbit </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Rat" id="species-reactivity-Rat"> <label class="form-check-label" for="species-reactivity-Rat"> Rat </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Sheep" id="species-reactivity-Sheep"> <label class="form-check-label" for="species-reactivity-Sheep"> Sheep </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Swine" id="species-reactivity-Swine"> <label class="form-check-label" for="species-reactivity-Swine"> Swine </label> </div> </li> </ul> <div class="search__dropdown__actions"> <button type="button" class="btn btn-sm btn-text search__dropdown__actions__clear">Clear</button> <button type="button" class="btn btn-sm btn-primary search__dropdown__actions__confirm">Confirm</button> </div> </div> </div> <div class="search__params" tabindex="0" data-search-field="species-reactivity"> <div class="search__params__container"> <div class="search-term-layout"> <div class="search-term-layout__term">Species Reactivity</div> <div class="search-term-layout__count">0</div> </div> </div> <div class="search__dropdown"> <ul class="list-unstyled m-0"> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Human" id="species-reactivity-Human"> <label class="form-check-label" for="species-reactivity-Human"> Human </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Mouse" id="species-reactivity-Mouse"> <label class="form-check-label" for="species-reactivity-Mouse"> Mouse </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Rat" id="species-reactivity-Rat"> <label class="form-check-label" for="species-reactivity-Rat"> Rat </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Pig" id="species-reactivity-Pig"> <label class="form-check-label" for="species-reactivity-Pig"> Pig </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Bovine" id="species-reactivity-Bovine"> <label class="form-check-label" for="species-reactivity-Bovine"> Bovine </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Chicken" id="species-reactivity-Chicken"> <label class="form-check-label" for="species-reactivity-Chicken"> Chicken </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Zebrafish" id="species-reactivity-Zebrafish"> <label class="form-check-label" for="species-reactivity-Zebrafish"> Zebrafish </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Hamster" id="species-reactivity-Hamster"> <label class="form-check-label" for="species-reactivity-Hamster"> Hamster </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Monkey" id="species-reactivity-Monkey"> <label class="form-check-label" for="species-reactivity-Monkey"> Monkey </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="Drosophila" id="species-reactivity-Drosophila"> <label class="form-check-label" for="species-reactivity-Drosophila"> Drosophila </label> </div> </li> </ul> <div class="search__dropdown__actions"> <button type="button" class="btn btn-sm btn-text search__dropdown__actions__clear">Clear</button> <button type="button" class="btn btn-sm btn-primary search__dropdown__actions__confirm">Confirm</button> </div> </div> </div> <div class="search__params" tabindex="0" data-search-field="conjugate"> <div class="search__params__container"> <div class="search-term-layout"> <div class="search-term-layout__term">Conjugate</div> <div class="search-term-layout__count">0</div> </div> </div> <div class="search__dropdown"> <ul class="list-unstyled m-0"> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="APC" id="conjugate-APC"> <label class="form-check-label" for="conjugate-APC"> APC </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Atlantic Blue™" id="conjugate-Atlantic-Blue™"> <label class="form-check-label" for="conjugate-Atlantic-Blue™"> Atlantic Blue™ </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Biotin" id="conjugate-Biotin"> <label class="form-check-label" for="conjugate-Biotin"> Biotin </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Cardinal Red™" id="conjugate-Cardinal-Red™"> <label class="form-check-label" for="conjugate-Cardinal-Red™"> Cardinal Red™ </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite® Plus 405" id="conjugate-CoraLite®-Plus-405"> <label class="form-check-label" for="conjugate-CoraLite®-Plus-405"> CoraLite® Plus 405 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite® Plus 488" id="conjugate-CoraLite®-Plus-488"> <label class="form-check-label" for="conjugate-CoraLite®-Plus-488"> CoraLite® Plus 488 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite® Plus 647" id="conjugate-CoraLite®-Plus-647"> <label class="form-check-label" for="conjugate-CoraLite®-Plus-647"> CoraLite® Plus 647 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite® Plus 750" id="conjugate-CoraLite®-Plus-750"> <label class="form-check-label" for="conjugate-CoraLite®-Plus-750"> CoraLite® Plus 750 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®488" id="conjugate-CoraLite-488"> <label class="form-check-label" for="conjugate-CoraLite-488"> CoraLite®488 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®532" id="conjugate-CoraLite-532"> <label class="form-check-label" for="conjugate-CoraLite-532"> CoraLite®532 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®555" id="conjugate-CoraLite-555"> <label class="form-check-label" for="conjugate-CoraLite-555"> CoraLite®555 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®568" id="conjugate-CoraLite-568"> <label class="form-check-label" for="conjugate-CoraLite-568"> CoraLite®568 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®594" id="conjugate-CoraLite-594"> <label class="form-check-label" for="conjugate-CoraLite-594"> CoraLite®594 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="FITC" id="conjugate-FITC"> <label class="form-check-label" for="conjugate-FITC"> FITC </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="FITC Plus" id="conjugate-FITC-Plus"> <label class="form-check-label" for="conjugate-FITC-Plus"> FITC Plus </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="HRP" id="conjugate-HRP"> <label class="form-check-label" for="conjugate-HRP"> HRP </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="PE" id="conjugate-PE"> <label class="form-check-label" for="conjugate-PE"> PE </label> </div> </li> </ul> <div class="search__dropdown__actions"> <button type="button" class="btn btn-sm btn-text search__dropdown__actions__clear">Clear</button> <button type="button" class="btn btn-sm btn-primary search__dropdown__actions__confirm">Confirm</button> </div> </div> </div> <div class="search__params" tabindex="0" data-search-field="secondaryab-conjugate"> <div class="search__params__container"> <div class="search-term-layout"> <div class="search-term-layout__term">Conjugate</div> <div class="search-term-layout__count">0</div> </div> </div> <div class="search__dropdown"> <ul class="list-unstyled m-0"> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Alexa Fluor® 488" id="conjugate-alexa-fluor-488"> <label class="form-check-label" for="conjugate-Alexa-Fluor-488"> Alexa Fluor® 488 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Alexa Fluor® 568" id="conjugate-alexa-fluor-568"> <label class="form-check-label" for="conjugate-Alexa-Fluor-568"> Alexa Fluor® 568 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Alexa Fluor® 647" id="conjugate-alexa-fluor-647"> <label class="form-check-label" for="conjugate-Alexa-Fluor-647"> Alexa Fluor® 647 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Alkaline phosphatase" id="conjugate-alkaline-phosphatase"> <label class="form-check-label" for="conjugate-Alkaline-phosphatase"> AP </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Biotin" id="conjugate-biotin"> <label class="form-check-label" for="conjugate-Biotin"> Biotin </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®488" id="conjugate-CoraLite-488"> <label class="form-check-label" for="conjugate-CoraLite-488"> CoraLite®488 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®594" id="conjugate-CoraLite-594"> <label class="form-check-label" for="conjugate-CoraLite-594"> CoraLite®594 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite®647" id="conjugate-CoraLite-647"> <label class="form-check-label" for="conjugate-CoraLite-647"> CoraLite®647 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="cy3" id="conjugate-cy3"> <label class="form-check-label" for="conjugate-Cy3"> Cy3 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="FITC" id="conjugate-FITC"> <label class="form-check-label" for="conjugate-FITC"> FITC </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="HRP" id="conjugate-HRP"> <label class="form-check-label" for="conjugate-HRP"> HRP </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="Rhodamine" id="conjugate-rhodamine"> <label class="form-check-label" for="conjugate-Rhodamine"> Rhodamine </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="R-PE" id="conjugate-r-pe"> <label class="form-check-label" for="conjugate-R-PE"> R-PE </label> </div> </li> </ul> <div class="search__dropdown__actions"> <button type="button" class="btn btn-sm btn-text search__dropdown__actions__clear">Clear</button> <button type="button" class="btn btn-sm btn-primary search__dropdown__actions__confirm">Confirm</button> </div> </div> </div> <div class="search__params" tabindex="0" data-search-field="compatible-species"> <div class="search__params__container"> <div class="search-term-layout"> <div class="search-term-layout__term">Compatible Species</div> <div class="search-term-layout__count">0</div> </div> </div> <div class="search__dropdown"> <ul class="list-unstyled m-0"> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="anti rabbit" id="compatible-species-Rabbit"> <label class="form-check-label" for="compatible-species-Rabbit"> Rabbit </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="anti mouse" id="compatible-species-Mouse"> <label class="form-check-label" for="compatible-species-Mouse"> Mouse </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="species-reactivity" value="anti human" id="compatible-species-Human"> <label class="form-check-label" for="compatible-species-Human"> Human </label> </div> </li> </ul> <div class="search__dropdown__actions"> <button type="button" class="btn btn-sm btn-text search__dropdown__actions__clear">Clear</button> <button type="button" class="btn btn-sm btn-primary search__dropdown__actions__confirm">Confirm</button> </div> </div> </div> <div class="search__params" tabindex="0" data-search-field="flexable-conjugate"> <div class="search__params__container"> <div class="search-term-layout"> <div class="search-term-layout__term">Conjugate</div> <div class="search-term-layout__count">0</div> </div> </div> <div class="search__dropdown"> <ul class="list-unstyled m-0"> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite405" id="conjugate-CoraLite-Plus-405"> <label class="form-check-label" for="conjugate-CoraLite-Plus-405"> CoraLite Plus 405 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="FITC" id="conjugate-FITC"> <label class="form-check-label" for="conjugate-FITC"> FITC Plus<sup style="color:red"> NEW</sup> </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite488" id="conjugate-CoraLite-488"> <label class="form-check-label" for="conjugate-CoraLite-488"> CoraLite Plus 488 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite555" id="conjugate-CoraLite-Plus-555"> <label class="form-check-label" for="conjugate-CoraLite-Plus-555"> CoraLite Plus 555 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite647" id="conjugate-CoraLite-Plus-647"> <label class="form-check-label" for="conjugate-CoraLite-Plus-647"> CoraLite Plus 647 </label> </div> </li> <li class="search__dropdown__item"> <div class="form-check"> <input class="form-check-input" type="checkbox" name="conjugate" value="CoraLite750" id="conjugate-CoraLite-Plus-750"> <label class="form-check-label" for="conjugate-CoraLite-Plus-750"> CoraLite Plus 750 </label> </div> </li> </ul> <div class="search__dropdown__actions"> <button type="button" class="btn btn-sm btn-text search__dropdown__actions__clear">Clear</button> <button type="button" class="btn btn-sm btn-primary search__dropdown__actions__confirm">Confirm</button> </div> </div> </div> <div class="search__actions"> <button class="button" type="submit"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"> <path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" /> </svg> <span>Search</span> </button> </div> </div> </form> </div> </div> </div> </section> <script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.16.0/jquery.validate.min.js"></script> <script src="https://ajax.aspnetcdn.com/ajax/mvc/5.2.3/jquery.validate.unobtrusive.min.js"></script> <section class="hero"> <div class="container-xl"> <div class="row"> <div class="col-12 col-lg-12"> <div class="breadcrumbs-container"> <div class="breadcrumbs"> <ul class="list-inline m-0"> <li class="list-inline-item"><a href="/news/blog/">Blog</a></li> <li class="list-inline-item">Proteintech Product Reviews</li> </ul> </div> </div> <div class="hero_article_content p-0"> <div class="col-12 col-lg-12"> <h1 class="ptg-darkblue">Proteintech Product Reviews</h1> <p class="large">Share your feedback with the research community and receive an Amazon gift card or discount on your next order.</p> </div> <div class="umb-grid"> <div class="grid-section"> <div > <div class="container"> <div class="row clearfix"> <div class="col-md-12 column"> <div > <h4 class="storyHeading">Share your feedback with the research community and receive a $25 Amazon gift card or discount on your next order.</h4> <hr /> <p class="storyHeading">Different products are better suited to different applications and tissues. Sharing your insight online gives other scientists an indication into how the antibody performed in various applications and tissues before making a purchase.</p> <p class="storyHeading">As a thank you for this service to the community you will receive an offer via email for a<strong> $25 Amazon gift card or $25 off your next order.</strong>*</p> <p class="storyHeading">*Available in: Currencies: £20/20EUR in Europe, AUD30 in Australia, or SGD30 off your next order/Starbucks voucher in Singapore.</p> <p>Please take a minute to tell us how your Proteintech/ChromoTek product performed by completing the short form below.</p> <div class="umb-macro-holder IframeInsert umb-macro-mce_1 mceNonEditable"><!-- <?UMBRACO_MACRO macroAlias="IframeInsert" location="https://www.ptglab.com/ProductReview.htm" height="1100" width="100%" /> --><ins><iframe src="/ProductReview.htm" width="100%" height="1100" scrolling="no" type="text/html" frameborder="0" id="sizetracker"> Sorry, your browser does not support IFRAMES </iframe></ins></div> <p><a><strong><span>Disclaimer:</span></strong></a></p> <p><span>Product reviews should be honest and not influenced by anything other than the performance of the product in the hands of the reviewer.</span></p> <p><span>Where the reviewer’s institution has internal regulations on receiving commercial gifts/incentives, it is the reviewer’s responsibility to acknowledge and adhere to those regulations.</span></p> <h4><a>Product Review FAQS</a></h4> <p><a><strong><span>Who can submit a product review?</span></strong></a></p> <p><span>To qualify, research must be based at a verifiable institution or university in the US, UK, EU, Australia or Singapore and have previously purchased the Proteintech/ChromoTek product within the last 12 months.</span></p> <p><a><strong><span>How do I submit a review and claim my reward?</span></strong></a></p> <ol> <li> <p><span>Go to the product page of a previously purchased product.</span></p> </li> <li> <p><span>Select ‘share your scientific insight on this antibody’.</span></p> </li> <li> <p><span>Complete the review form in full.</span></p> </li> <li> <p><span>Once the review has been received and reviewed you will receive an email offer including your country-specific gift card or a discount code for your next order.</span></p> </li> <li> <p><span>If opting to receive a discount code for $25 off your next order, please note that only 1 discount code can be redeemed in a single order. </span></p> </li> </ol> <p><a><strong><span>What happens to negative reviews? Will I still receive my Amazon gift card?</span></strong></a></p> <p><span>All reviews regardless of the score will receive the promised $25 Amazon gift card or discount. All submitted reviews are subject to review by the Proteintech technical support team to ensure all data is scientifically correct. Further information may be requested before the review is published. Publishing negative reviews also helps other researchers who may be working in similar tissues or applications to make an informed decision when purchasing Proteintech/ChromoTek products.</span></p> <hr /> <p><a> <strong>Terms and conditions:</strong></a></p> <ul> <li> <p><span>This offer is only available in the United States, Canada, Europe, Australia, and Singapore.</span></p> </li> <li> <p><span>$25 Amazon gift cards are only available in North America. </span><span></span>Reviews submitted from Europe will receive €/£20 discount/ €/£20 Amazon voucher. Reviews submitted from Australia-based customers will receive an AUD30 discount/ AUD30 Amazon voucher. Reviews submitted from Singapore-based customers will receive a SGD30 discount/ SGD30 Starbucks voucher.</p> </li> <li> <p><span>Customers are limited to 1 review per product. Gift cards and discounts will only be applied on the first review per product per customer. Additional reviews of the same antibody with a different application will not qualify for another gift card.</span></p> </li> <li> <p><span></span><span>Reviews that are processed and published can expect to receive a gift card within 15 business days.</span></p> </li> <li> <p><span>Reviews can be submitted by the end-user of the Proteintech product only. Reviews can not be submitted by purchasing departments or similar bodies.</span></p> </li> <li> <p>Reviewers must be affiliated with the lab/institute who purchased the product. Proof of purchase may be required.</p> </li> <li> <p><span>By submitting a product review to Proteintech, reviewers are representing that they are not prohibited by their institution or employment contracts, or any other obligation, from accepting gift cards or compensation for comments, data and/or images submitted.</span></p> </li> <li> <p><span>By submitting a product review to Proteintech, reviewers are accepting the publication of the review and any associated data onto the Proteintech website and/or social media channels.</span></p> </li> <li> <p><span>Offer void where prohibited, licensed, or restricted by federal, state, provincial, or local laws or regulation or agency/institutional policy.</span></p> </li> <li> <p><span>Product reviews should be honest and not influenced by anything other than the performance of the product in the hands of the reviewer. </span></p> </li> <li> <p><span>The reviewed product must have been purchased within the last 2 years. Proof of purchase date may be required.</span></p> </li> <li> <p><span>Discounts and gift cards are not valid for distributors of Proteintech/ChromoTek products.</span></p> </li> <li> <p><span>Proteintech reserves the right to amend these terms and conditions at any time and to refuse product review submissions, without prior notice.</span></p> </li> <li> <p><span>This offer is from Proteintech and is not affiliated with Amazon.com.</span></p> </li> </ul> <p><span> </span></p> <p><span>For any further queries regarding Proteintech customer reviews please email <span><a href="mailto:proteintech@ptglab.com">proteintech@ptglab.com</a></span>.</span></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <!-- Modal --> <div class="modal fade" id="myIframModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> </div> </div> </div> </div> <div class="scroll-to-top"> <a href="#top" title="Back to Top" class="btn btn-roundel"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z" /> </svg> </a> </div> <footer class="footer"> <div class="container-xl"> <div class="row d-flex d-lg-none"> <div class="col-12 text-center"> <hr /> <ul class="inline-list m-0 p-0 opacity-7"> <li class="list-inline-item"> <a href="https://www.youtube.com/proteintech"> <img loading="lazy" src="/img/logos/Icon_Youtube.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.linkedin.com/company/proteintech-group/"> <img loading="lazy" src="/img/logos/Icon_Linkedin.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.twitter.com/proteintech"> <img loading="lazy" src="/img/logos/Icon_Twitter.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.facebook.com/Proteintech-311515338877884/timeline/"> <img loading="lazy" src="/img/logos/Icon_Facebook.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.instagram.com/proteintech/"> <img loading="lazy" src="/img/logos/Icon_Instagram.svg" width="42" /> </a> </li> </ul> <hr /> <p class="fw-semi m-4"> <a class="mx-2" href="/contact/">Contact Us</a> <a class="mx-2" href="/news/blog/privacy-policy/">Privacy Policy</a> <a class="mx-2" href="/terms-of-use/">Terms of use</a> <a class="mx-2" href="/news/blog/product-terms/">Terms and Conditions</a> <a class="mx-2" href="/trademark-information/">Trademark Information</a> <a class="mx-2" href="/imprint-impressum/">Imprint (Impressum)</a> <a class="mx-2" href="/modern-slavery-statement/">Modern Slavery Statement</a> <a class="mx-2" href="/chromotek-privacy-policy/">ChromoTek GmbH Privacy Policy</a> </p> <p class="fw-semi"> Copyright &copy; 2002-2024 Proteintech Group, Inc. All rights reserved. </p> </div> </div> <div class="row d-none d-lg-flex"> <div class="col-12"> <div class="row pb-5"> <div class="col-3 b-r"> <p class="fw-bold large">Proteintech North America (HQ)</p> <address class=""> Proteintech Group, Inc<br> 5500 Pearl Street, Suite 400<br> Rosemont, IL 60018, USA<br> </address> <p class=""> <a href="tel:1-888-478-4522">1-888-478-4522</a><br> <a href="mailto:proteintech@ptglab.com">proteintech@ptglab.com</a> </p> </div> <div class="col-3 b-r"> <p class="fw-bold large">Proteintech Europe</p> <address class=""> Transmission (6th Fl)<br> 6 Atherton Street<br> M3 3GS, Manchester, UK<br> </address> <p class=""> <a href="tel:(+44) 161 839 3007">(+44) 161 839 3007</a><br> <a href="mailto:europe@ptglab.com">europe@ptglab.com</a> </p> </div> <div class="col-3 b-r"> <p class="fw-bold large">ChromoTek GmbH &amp; Proteintech Germany</p> <address class=""> Fraunhoferstr. 1<br> 82152, Planegg-Martinsried <br> Germany<br> </address> <p class=""> <a href="tel:+49 89 124 148 850">+49 89 124 148 850</a><br> <a href="mailto:germany@ptglab.com">germany@ptglab.com</a> </p> </div> <div class="col-3 d-flex"> <div class="flex-1 d-flex"> <img class="m-auto" src="/img/logos/Logo_Ptg_Main.png" alt="Proteintech" width="180"> </div> </div> </div> <hr /> <div class="row"> <div class="col-9"> <p class="fw-semi"> <a class="me-4" href="/contact/">Contact Us</a> <a class="me-4" href="/news/blog/privacy-policy/" target="_blank">Privacy Policy</a> <a class="me-4" href="/terms-of-use/">Terms of use</a> <a class="me-4" href="/news/blog/product-terms/" target="_blank">Terms and Conditions</a> <a class="me-4" href="/trademark-information/" target="_blank">Trademark Information</a> <a class="me-4" href="/imprint-impressum/" target="_blank">Imprint (Impressum)</a> <a class="me-4" href="/modern-slavery-statement/" target="_blank" style="padding: 0;"> Modern Slavery Statement </a> </p> <p class="fw-semi"> <a class="me-4" href="/chromotek-privacy-policy/">ChromoTek GmbH Privacy Policy</a> <a href="#"> Copyright &copy; 2002-2024 Proteintech Group, Inc. All rights reserved. </a> </p> </div> <div class="col-auto ms-auto"> <ul class="inline-list text-end m-0 p-0 opacity-7"> <li class="list-inline-item"> <a href="https://www.youtube.com/proteintech"> <img loading="lazy" src="/img/logos/Icon_Youtube.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.linkedin.com/company/proteintech-group/"> <img loading="lazy" src="/img/logos/Icon_Linkedin.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.twitter.com/proteintech"> <img loading="lazy" src="/img/logos/Icon_Twitter.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.facebook.com/Proteintech-311515338877884/timeline/"> <img loading="lazy" src="/img/logos/Icon_Facebook.svg" width="42" /> </a> </li> <li class="list-inline-item"> <a href="https://www.instagram.com/proteintech/"> <img loading="lazy" src="/img/logos/Icon_Instagram.svg" width="42" /> </a> </li> </ul> </div> </div> </div> </div> </div> </footer> </main> <script> if (window.ActiveXObject || "ActiveXObject" in window) { $('body').append('<div class="modal-backdrop fade show opacity-100" style="display: flex;justify-content: center;align-items: center;"><img src="/img/Banner-for-IE.png"></div>'); } </script> <script type='text/javascript' src='https://ptglab.my.site.com/ESWLiveChatEU1694620743265/assets/js/bootstrap.min.js'></script> <div id="scripts"> <script src="/scripts/common.js?v=20240714" type="text/javascript"></script> <script src="/scripts/matchHeight.js"></script> <script src="/scripts/search.js?v=20220816"></script> <script src="/scripts/scrollToTop.js"></script> <script src="/scripts/navigation.js"></script> <script src="/scripts/video.js"></script> <script src="/scripts/bootstrap.min.js"></script> <script src="/scripts/vendor/flickity.pkgd.min.js"></script> </div> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.5.3/iframeResizer.min.js"></script> <script type="text/javascript"> if ($("#sizetracker").length > 0) { $('#sizetracker').iFrameResize([{ log: true }]); document.getElementById('sizetracker').style.width = '100%'; } $('.main-carousel').flickity({ pageDots: true, freeScroll: true, watchCSS: false, contain: true, groupCells: true, cellAlign: "left", autoPlay: 3000 }); </script> <script> $(function () { var myModal = new bootstrap.Modal(document.getElementById('myIframModal'), { keyboard: false }) $('.button-primary').click(function () { var me = $(this); var link = me.data('src'); var mainheight = me.data('height'); $('#myIframModal .modal-lg').width('600px'); $('#myIframModal .modal-body').html('<iframe src="' + link + '" type="text/html" frameborder="0" id="sizetracker" width="100%" height="100%">Sorry, your browser does not support IFRAMES </iframe>'); $('#myIframModal .modal-body').height(mainheight); myModal.show(); }); }) </script> <div class="alert-box"> <div> </div> </div> <script src="//rum-static.pingdom.net/pa-5bf2a643cea07b00160004ea.js" async></script> <script type="text/javascript"> piAId = '686213'; piCId = '1441'; piHostname = 'pi.pardot.com'; (function () { function async_load() { var s = document.createElement('script'); s.type = 'text/javascript'; s.src = ('https:' == document.location.protocol ? 'https://pi' : 'http://cdn') + '.pardot.com/pd.js'; var c = document.getElementsByTagName('script')[0]; c.parentNode.insertBefore(s, c); } if (window.attachEvent) { window.attachEvent('onload', async_load); } else { window.addEventListener('load', async_load, false); } })(); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10