www.hipot.com Open in urlscan Pro
151.101.113.124  Public Scan

Submitted URL: https://j.mp/3ohXlAY
Effective URL: https://www.hipot.com/repair?utm_source=IKU-WEB&utm_medium=IKU-WEB&utm_campaign=IKU-Cross-Selling
Submission Tags: falconsandbox
Submission: On September 15 via api from US — Scanned from DE

Form analysis 3 forms found in the DOM

<form><span class="fieldset">
    <p><input type="checkbox" value="check" id="chkMain" checked="checked" class="legacy-group-status optanon-status-checkbox"><label for="chkMain">Active</label></p>
  </span></form>

GET https://www.hipot.com/instantsearch/result/

<form class="form minisearch" id="search_mini_form" action="https://www.hipot.com/instantsearch/result/" method="get">
  <i class="ikonix-icon ikonix-icon-magnifier search-icon">
            </i>
  <input id="search" type="text" name="q" value="" class="input-text form-control" maxlength="128" placeholder="How Can We Help?" role="combobox" aria-expanded="true" aria-haspopup="false" aria-autocomplete="both" autocomplete="off">
  <button type="submit" title="Search" class="button" disabled=""> 8 </button>
  <div id="search_autocomplete" class="search-autocomplete" style="display: none;"></div>
  <div id="search-auto-complete" class="hammer-search-auto-complete" style="display:none">
    <div class="product-data" style="display:none">
      <div class="hammer-search-auto-complete-category" style="display:none">
        <div class="title"> Categories </div>
        <ul id="hammer-search-auto-complete-category" role="listbox">
        </ul>
      </div>
      <div class="hammer-search-auto-complete-product" style="display:none">
        <div class="title"> Products <a class="hammer-search-auto-complete-product-see-all">
                    See All                    <span class="hammer-search-auto-complete-product-see-all-size"></span>
                </a>
        </div>
        <ul id="hammer-search-auto-complete-product" role="listbox">
        </ul>
      </div>
      <div class="hammer-search-auto-complete-cms-pages" style="display:none">
        <div class="title"> Pages </div>
        <ul id="hammer-search-auto-complete-cms-pages" role="listbox">
        </ul>
      </div>
      <div class="hammer-search-auto-complete-suggest" style="display:none">
        <div class="title">Popular Suggestions</div>
        <ul id="hammer-search-auto-complete-suggest" role="listbox">
        </ul>
      </div>
    </div>
    <div class="no-result" style="display: none;">Sorry, no results were found!</div>
  </div>
  <script>
    require(
      ['jquery', 'uiComponent'],
      function($, Component) {
        if ($(window).width() < 768) {
          $("#search_mini_form .search .label").click(function() {
            $("#search").toggle();
          });
        }
        $("#search_mini_form .control").append('<div class="icon-container " style="display:none;"><i class="loader"></i></div>');
        var minCharacters = "3";
        var timeLapse = "1000";
        $("#search_mini_form").unbind('input');
        var timer = null;
        $("#search").keyup(function() {
          clearTimeout(timer);
          if ($("#search").val().length >= minCharacters) {
            $("#search_mini_form .icon-container").show();
          } else {
            $("#search_mini_form .icon-container").hide();
            $("#search-auto-complete").hide();
          }
          timer = setTimeout(doneTyping, timeLapse)
        });

        function doneTyping() {
          if ($("#search").val().length < minCharacters) {
            $("#search-auto-complete").hide();
            return false;
          }
          if ($("#search").val().length >= minCharacters) {
            $.ajax({
              url: "https://www.hipot.com/search_auto_complete/ajax/index/",
              data: {
                q: $("#search").val()
              },
              dataType: "json",
              type: 'GET',
              success: function(response) {
                if (typeof response.result != 'undefined' && response.result.length > 0) {
                  HammerSearchAutoCompleteParseData(response.result);
                } else {
                  $("#search_mini_form .icon-container").hide();
                }
              }
            });
            return false;
          } else {
            $("#search-auto-complete").hide();
          }
        }
        $(document).on("focusout", "#search", function() {
          if (!jQuery("#search-auto-complete").is(":hover")) {
            $("#search-auto-complete").hide();
          }
        });
        $(document).on("click", ".autocompleteAddToCart", function() {
          $(this).html('<span>Processing...</span>');
          $.ajax({
            url: $(this).attr('data-form-url'),
            data: {
              product: $(this).attr('data-product-id'),
              uenc: $(this).attr('data-url-encoded'),
              form_key: $(this).attr('data-form-key')
            },
            dataType: "json",
            type: 'post',
            success: function(response) {
              $(this).html('<span>Add to Cart</span>');
              $("#search-auto-complete").hide();
              if (typeof response.backUrl != 'undefined') {
                window.location.href = response.backUrl;
              }
            }
          });
          return false;
        });

        function HammerSearchAutoCompleteParseData(result) {
          var suggestCount = 0;
          var productCount = 0;
          var categoryCount = 0;
          var cmsCount = 0;
          var htmlSuggest = '';
          var htmlProduct = '';
          var htmlCategory = '';
          var htmlCms = '';
          $("#hammer-search-auto-complete-suggest").html('');
          $("#hammer-search-auto-complete-product").html('');
          $("#hammer-search-auto-complete-category").html('');
          $("#hammer-search-auto-complete-cms-pages").html('');
          $(".hammer-search-auto-complete-suggest").hide();
          $(".hammer-search-auto-complete-product").hide();
          $(".hammer-search-auto-complete-category").hide();
          $(".hammer-search-auto-complete-cms-pages").hide();
          result.forEach(function(res) {
            if (res.code == 'suggest') {
              suggestCount = suggestCount + res.data.length;
              if (res.data.length > 0) {
                res.data.forEach(function(suggestRes) {
                  htmlSuggest += '<li>';
                  htmlSuggest += '<a href="' + suggestRes.url + '" title="' + suggestRes.title + '">';
                  if (suggestRes.title.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                    var res = suggestRes.title.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                    htmlSuggest += res + '(<span>' + suggestRes.num_results + '</span>)';
                  } else {
                    htmlSuggest += '<span>' + suggestRes.title + '</span> (<span>' + suggestRes.num_results + '</span>)';
                  }
                  htmlSuggest += '</a>';
                  htmlSuggest += '</li>';
                });
                $("#hammer-search-auto-complete-suggest").append(htmlSuggest);
              } else {
                htmlSuggest += '<li>';
                htmlSuggest += '<span class="no-results">Sorry, no results were found!</span>';
                htmlSuggest += '</li>';
                $("#hammer-search-auto-complete-suggest").append(htmlSuggest);
              }
              $(".hammer-search-auto-complete-suggest").show();
            }
            if (res.code == 'category') {
              categoryCount = categoryCount + res.size;
              if (res.size > 0) {
                Object.values(res.data).forEach(function(categoryRes) {
                  htmlCategory += '<li>';
                  if (typeof categoryRes.parent_name != 'undefined' && categoryRes.parent_name != '') {
                    htmlCategory += '<span class="parent_name">' + categoryRes.parent_name + ' > </span>';
                  }
                  htmlCategory += '<a href="' + categoryRes.path + '" title="' + categoryRes.name + '">';
                  if (categoryRes.name.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                    var res = categoryRes.name.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                    htmlCategory += res;
                  } else {
                    htmlCategory += '<span>' + categoryRes.name + '</span>';
                  }
                  htmlCategory += '</a>';
                  htmlCategory += '</li>';
                });
                $("#hammer-search-auto-complete-category").append(htmlCategory);
              } else {
                htmlCategory += '<li>';
                htmlCategory += '<span class="no-results">Sorry, no results were found!</span>';
                htmlCategory += '</li>';
                $("#hammer-search-auto-complete-category").append(htmlCategory);
              }
              $(".hammer-search-auto-complete-category").show();
            }
            if (res.code == 'cms') {
              cmsCount = cmsCount + res.size;
              if (res.size > 0) {
                Object.values(res.data).forEach(function(cmsRes) {
                  htmlCms += '<li>';
                  htmlCms += '<a href="' + cmsRes.url + '" title="' + cmsRes.title + '">';
                  let cmsResLowerCase = cmsRes.title.toLowerCase();
                  if (cmsResLowerCase.indexOf($("#search").val().toLowerCase()) != -1) {
                    var res = cmsRes.title.replace(eval("/" + cmsRes.title + "/i"), '<strong>' + cmsRes.title + '</strong>');
                    htmlCms += res;
                  } else {
                    htmlCms += '<span>' + cmsRes.title + '</span>';
                  }
                  htmlCms += '</a>';
                  htmlCms += '</li>';
                });
                $("#hammer-search-auto-complete-cms-pages").append(htmlCms);
              } else {
                htmlCms += '<li>';
                htmlCms += '<span class="no-results">Sorry, no results were found!</span>';
                htmlCms += '</li>';
                $("#hammer-search-auto-complete-cms-pages").append(htmlCms);
              }
              $(".hammer-search-auto-complete-cms-pages").show();
            }
            if (res.code == 'product') {
              productCount = productCount + res.data.length;
              if (res.data.length > 0) {
                $(".hammer-search-auto-complete-product-see-all").attr("href", res.url);
                $(".hammer-search-auto-complete-product-see-all-size").text(res.size);
                $(".hammer-search-auto-complete-product-see-all").show();
                res.data.forEach(function(productRes) {
                  htmlProduct += '<li>';
                  if (productRes.image) {
                    htmlProduct += '<div class="qs-option-image">';
                    htmlProduct += '<a href="' + productRes.url + '" title="' + productRes.name + '">';
                    htmlProduct += '<img src="' + productRes.image + '" title="' + productRes.name + '" />';
                    htmlProduct += '</a>';
                    htmlProduct += '</div>';
                  }
                  htmlProduct += '<div class="qs-option-info">';
                  if (productRes.name) {
                    htmlProduct += '<div class="qs-option-title">';
                    if (productRes.name.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                      var res = productRes.name.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                      htmlProduct += '<a href="' + productRes.url + '" title="' + productRes.name + '">' + res + '</a>';
                    } else {
                      htmlProduct += '<a href="' + productRes.url + '" title="' + productRes.name + '">' + productRes.name + '</a>';
                    }
                    htmlProduct += '</div>';
                  }
                  if (productRes.reviews_rating) {
                    htmlProduct += '<div class="qs-option-reviews">' + productRes.reviews_rating + '</div>';
                  }
                  if (productRes.sku) {
                    if (productRes.sku.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                      var res = productRes.sku.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                      htmlProduct += '<div class="qs-option-sku">SKU: ' + res + '</div>';
                    } else {
                      htmlProduct += '<div class="qs-option-sku">SKU: <span>' + productRes.sku + '</span></div>';
                    }
                  }
                  if (productRes.short_description) {
                    if (productRes.short_description.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                      var res = productRes.short_description.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                      htmlProduct += '<div class="qs-option-shortdescription">' + res + '</div>';
                    } else {
                      htmlProduct += '<div class="qs-option-shortdescription">' + productRes.short_description + '</div>';
                    }
                  }
                  if (productRes.description) {
                    if (productRes.description.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
                      var res = productRes.description.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
                      htmlProduct += '<div class="qs-option-description">' + res + '</div>';
                    } else {
                      htmlProduct += '<div class="qs-option-description">' + productRes.description + '</div>';
                    }
                  }
                  if (productRes.price) {
                    htmlProduct += '<div class="qs-option-price">' + productRes.price + '</div>';
                  }
                  if (productRes.add_to_cart) {
                    htmlProduct += '<div class="qs-option-addtocart">';
                    htmlProduct += '<button type="button" title="Add to Cart" data-product-id="' + productRes.add_to_cart.productId + '" data-url-encoded="' + productRes.add_to_cart.urlEncoded + '" data-form-key="' + productRes.add_to_cart
                      .formKey + '" data-form-url="' + productRes.add_to_cart.formUrl + '" class="action tocart primary autocompleteAddToCart">';
                    htmlProduct += '<span>Add to Cart</span>';
                    htmlProduct += '</button>';
                    htmlProduct += '</div>';
                  }
                  htmlProduct += '</div>';
                  htmlProduct += '</li>';
                });
                $("#hammer-search-auto-complete-product").append(htmlProduct);
              } else {
                $(".hammer-search-auto-complete-product-see-all").hide();
                htmlProduct += '<li>';
                htmlProduct += '<span class="no-results">Sorry, no results were found!</span>';
                htmlProduct += '</li>';
                $("#hammer-search-auto-complete-product").append(htmlProduct);
              }
              $(".hammer-search-auto-complete-product").show();
            }
          });
          var sum = suggestCount + productCount + categoryCount + cmsCount;
          if (sum > 0) {
            $(".product-data").show();
            $(".no-result").hide();
          } else {
            $(".no-result").show();
            $(".product-data").hide();
          }
          $("#search_mini_form .icon-container").hide();
          $("#search-auto-complete").show();
        }
      });

    function loadFromLocalSorage(queryText) {
      if (!this.localStorage) {
        return;
      }
      var hash = this._hash(queryText);
      var data = this.localStorage.getItem(hash);
      if (!data) {
        return false;
      }
      return JSON.parse(data);
    }

    function saveToLocalSorage(data, queryText) {
      if (!this.localStorage) {
        return;
      }
      var hash = this._hash(queryText);
      this.localStorage.removeItem(hash);
      this.localStorage.setItem(hash, JSON.stringify(data));
    }

    function _hash(object) {
      var string = JSON.stringify(object) + "";
      var hash = 0,
        i, chr, len;
      if (string.length == 0) {
        return hash;
      }
      for (i = 0, len = string.length; i < len; i++) {
        chr = string.charCodeAt(i);
        hash = ((hash << 5) - hash) + chr;
        hash |= 0;
      }
      return 'searchautocomplete_h' + hash;
    }
  </script>
  <div class="mgs-instant-search-dropdown" data-bind="scope: 'instant_search_form'">
    <!-- ko template: getTemplate() -->
    <div id="mgs-instant-autocomplete-wrapper" class="mgs-instant-autocomplete-wrapper" data-bind="visible: showPopup()" style="display: none;">
      <div data-bind="visible: anyResultCount()" style="display: none;">
        <!-- ko foreach: getRegion('steps') -->
        <!-- ko template: getTemplate() -->
        <!-- ko foreach: {data: elems, as: 'element'} -->
        <!-- ko if: hasTemplate() --><!-- ko template: getTemplate() -->
        <div class="products products-list" data-bind="visible: isVisible()" style="display: none;">
          <div class="title">
            <!-- ko i18n: 'Products'--><span>Products</span><!-- /ko -->
            <a class="see-all" data-bind="attr: {href: result.product.url}" href="">
            <!-- ko i18n: 'See All' --><span>See All</span><!-- /ko -->
            (<span data-bind="text: result.product.size">0</span>)
        </a>
          </div>
          <ul class="products list items product-items" role="listbox" data-bind="foreach: result.product.data"></ul>
        </div><!-- /ko --><!-- /ko -->
        <!-- ko if: hasTemplate() --><!-- ko template: getTemplate() -->
        <div class="categories categories-list" data-bind="visible: isVisible()" style="display: none;">
          <div class="title">
            <!-- ko i18n: 'Categories'--><span>Categories</span><!-- /ko -->
            <a class="see-all" data-bind="attr: {href: result.category.url}" href="">
            <!-- ko i18n: 'See All' --><span>See All</span><!-- /ko -->
            (<span data-bind="text: result.category.size">0</span>)
        </a>
          </div>
          <ul class="categories list items category-items" role="listbox" data-bind="foreach: result.category.data"></ul>
        </div><!-- /ko --><!-- /ko -->
        <!-- ko if: hasTemplate() --><!-- ko template: getTemplate() -->
        <div class="pages pages-list" data-bind="visible: isVisible()" style="display: none;">
          <div class="title">
            <!-- ko i18n: 'Cms pages'--><span>Cms pages</span><!-- /ko -->
            <a class="see-all" data-bind="attr: {href: result.page.url}" href="">
            <!-- ko i18n: 'See All' --><span>See All</span><!-- /ko -->
            (<span data-bind="text: result.page.size">0</span>)
        </a>
          </div>
          <ul class="pages list items page-items" role="listbox" data-bind="foreach: result.page.data"></ul>
        </div><!-- /ko --><!-- /ko -->
        <!-- ko if: hasTemplate() --><!-- ko template: getTemplate() -->
        <div class="posts posts-list" data-bind="visible: isVisible()" style="display: none;">
          <div class="title">
            <!-- ko i18n: 'Blogs'--><span>Blogs</span><!-- /ko -->
            <a class="see-all" data-bind="attr: {href: result.blog.url}" href="">
            <!-- ko i18n: 'See All' --><span>See All</span><!-- /ko -->
            (<span data-bind="text: result.blog.size">0</span>)
        </a>
          </div>
          <ul class="posts list items post-items" role="listbox" data-bind="foreach: result.blog.data"></ul>
        </div><!-- /ko --><!-- /ko -->
        <!-- /ko -->
        <!-- /ko -->
        <!--/ko-->
      </div>
      <div class="no-result" data-bind="text: textNoResult, visible: !anyResultCount()">No Result</div>
    </div><!-- /ko -->
  </div>
  <script>
    window.instantSearch = {
      "result": {
        "product": {
          "data": [],
          "size": 0,
          "url": ""
        },
        "category": {
          "data": [],
          "size": 0,
          "url": ""
        },
        "page": {
          "data": [],
          "size": 0,
          "url": ""
        },
        "blog": {
          "data": [],
          "size": 0,
          "url": ""
        }
      }
    };
  </script>
</form>

POST

<form class="form form-login" method="post" data-bind="event: {submit: login }" id="login-form">
  <div class="fieldset login" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}" data-hasrequired="* Required Fields">
    <div class="field email required">
      <label class="label" for="customer-email"><span data-bind="i18n: 'Email Address'">Email Address</span></label>
      <div class="control">
        <input name="username" id="customer-email" type="email" class="input-text" data-mage-init="{&quot;mage/trim-input&quot;:{}}" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true, 'validate-email':true}"
          autocomplete="off">
      </div>
    </div>
    <div class="field password required">
      <label for="pass" class="label"><span data-bind="i18n: 'Password'">Password</span></label>
      <div class="control">
        <input name="password" type="password" class="input-text" id="pass" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true}" autocomplete="off">
      </div>
    </div>
    <!-- ko foreach: getRegion('additional-login-form-fields') -->
    <!-- ko template: getTemplate() -->
    <input name="captcha_form_id" type="hidden" data-bind="value: formId,  attr: {'data-scope': dataScope}" value="user_login" data-scope="">
    <!-- ko if: (isRequired() && getIsVisible())--><!-- /ko -->
    <!-- /ko -->
    <!-- /ko -->
    <div class="actions-toolbar">
      <input name="context" type="hidden" value="checkout">
      <div class="primary">
        <button type="submit" class="action action-login secondary" name="send" id="send2">
          <span data-bind="i18n: 'Sign In'">Sign In</span>
        </button>
      </div>
      <div class="secondary">
        <a class="action" data-bind="attr: {href: forgotPasswordUrl}" href="https://www.hipot.com/customer/account/forgotpassword/">
                                <span data-bind="i18n: 'Forgot Your Password?'">Forgot Your Password?</span>
                            </a>
      </div>
    </div>
  </div>
</form>

Text Content

Cookie Notice

We use cookies to personalize your experience which includes web and ad content.
We also use cookies to analyze our web traffic. In addition, we share
information about your use of our site with our social media, advertising, and
analytics partners.View Our Privacy Policy.


Close
Accept Cookies
Cookie Settings


 * Your Privacy

 * Strictly Necessary Cookies

 * Performance Cookies

 * Targeting Cookies

 * More Information

Privacy Preference Centre

Active

Always Active



Save Settings

Allow All

The store will not work correctly in the case when cookies are disabled.

JavaScript seems to be disabled in your browser. For the best experience on our
site, be sure to turn on Javascript in your browser.

 * An ISO Certified Company

 * We're here to help +1(800) 504-0055
 * Buyer Resources
 * Catalog
 * RMA Request

 * Menu
 * Account

 * PRODUCTS
   * * 290 Series
     * 260 Series
     * 440 Series
       
     * Accessories
 * SUPPORT
   * * Calibration
     * Repair
     * RMA Request
     * Technical Questions
     * FAQ
     * Knowledge Center
     * Buyer Resources
 * ABOUT
   * * Customer Perks
 * CONTACT
 * CONSULTING

 * Compare Products
 * My Account
 * Create an Account
 * Sign In


QUICK LINKS
   
 * Hipot Testers
 * Ground Bond Testers
 * Accessories
 * Personal Protective Equipment
 * Send in Your Tester

8

Categories
Products See All
Pages
Popular Suggestions
Sorry, no results were found!
Products See All (0)
Categories See All (0)
Cms pages See All (0)
Blogs See All (0)
No Result

 * Compare Products
 * My Account
 * Create an Account
 * Sign In


My Cart


MINI CART

You have no items in your shopping cart.

 * Home
 * Repair


DON'T DESPAIR, WE REPAIR.


WE GUARANTEE REPAIR FOR INSTRUMENTS IN PRODUCTION AND THOSE DISCONTINUED WITHIN
THE LAST 5 YEARS.




FLAT RATE REPAIR

SERIES MODEL FLAT RATE REPAIR COST 260 264, 266 $500 290 294, 295, 296, 297, 298
$500 440 446, 448 $800 1300 1305, 1340 $500 2200 2205 $500 2500 2503, 2510,
2512, 2515, 2525, 2550 $500 2600 2630, 2660 $500 2900 2955, 2965, 2975 $500 4000
4320, 4520 $800 6000 6330 $800

Our ability to repair testers discontinued greater than 5 years is dependent
upon the availability of parts. All repairs include a standard calibration. If
an ISO calibration is required there will be an additional $300 fee added.

We cannot support or repair testers discontinued greater than 10 years. Repair
Services include a 90 day warranty on work performed. Installed options are not
covered under our Flat Rate Repair program and may require an additional charge.

Instruments we receive that are physically damaged or grossly misused will be
charged an additional $200.00 to the flat rate repair price as long as that
instrument is deemed repairable.


READY TO SEND IN YOUR TEST FOR REPAIR?


SUBMIT AN RMA >


DON'T INCUR SHIPPING DAMAGE
WHILE SENDING IN YOUR TESTER FOR REPAIR!

USE SHIP IT SAFE

 
Call Us
+1(800) 504-0055
 * Calibration
 * Repair
 * RMA Request

 * USB Driver
 * Trade-Ins
 * FAQ

 * Manuals
 * Specs
 * Quick Start Guides

 *  
 *  
   
 * 

© 2021 SCI A Division of Ikonix USA
Privacy Policy | Sitemap


Close
Checkout as a new customer

Creating an account has many benefits:

 * See order and shipping status
 * Track order history
 * Check out faster

Create an Account
Checkout using your account

Email Address

Password

Sign In
Forgot Your Password?