www.arisafety.com
Open in
urlscan Pro
151.101.1.124
Public Scan
Submitted URL: http://arisafety.com/
Effective URL: https://www.arisafety.com/
Submission: On March 17 via manual from FR — Scanned from FR
Effective URL: https://www.arisafety.com/
Submission: On March 17 via manual from FR — Scanned from FR
Form analysis
2 forms found in the DOMGET https://www.arisafety.com/catalogsearch/result/
<form class="form minisearch hammer-minisearch" id="search_mini_form" action="https://www.arisafety.com/catalogsearch/result/" method="get" __bizdiag="113" __biza="WJ__" data-hs-cf-bound="true">
<div class="field search">
<label class="label" for="search" data-role="minisearch-label">
<span>Search</span>
</label>
<div class="control">
<input id="search" type="text" name="q" value="" placeholder="Search" class="input-text" maxlength="128" role="combobox" aria-haspopup="false" aria-autocomplete="both" autocomplete="off">
<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.arisafety.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="icon-container " style="display:none;"><i class="loader"></i></div>
</div>
</div>
<div class="actions">
<button type="submit" title="Search" class="action search" aria-label="Search">
<span>Search</span>
</button>
</div>
</form>
POST
<form class="form form-login" method="post" data-bind="event: {submit: login }" id="login-form" data-hs-cf-bound="true" __bizdiag="-704478833" __biza="WJ__">
<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="{"mage/trim-input":{}}" 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.arisafety.com/customer/account/forgotpassword/">
<span data-bind="i18n: 'Forgot Your Password?'">Forgot Your Password?</span>
</a>
</div>
</div>
</div>
</form>
Text Content
This website stores cookies on your computer. These cookies are used to collect information about how you interact with our website and allow us to remember you. We use this information in order to improve and customize your browsing experience and for analytics and metrics about our visitors both on this website and other media. To find out more about the cookies we use, see our Privacy Policy. If you decline, your information won’t be tracked when you visit this website. A single cookie will be used in your browser to remember your preference not to be tracked. Cookies settings Accept Decline 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. * Customer Resources * Product Catalog * Submit an RMA * My Account * Sign In * Create an Account Toggle Nav Menu * Products * Hypot * HypotULTRA * HypotMAX * OMNIA II * HYAMP * LINECHEK II * Systems * Multiplexers * Accessories * Software * Refurbished Instruments * Industry * Medical * Appliance * System Integrators * Industrial Equipment * Aerospace * Lighting * Consumer Electronics * Test and Measurement * Electric Vehicle * Support * Calibration * Repair * Submit an RMA * Ship It Safe * Warranty * Troubleshooting * Instrument Drivers * Software Updates * Technical Question * Education * Videos * Webinars * Whitepapers * Safety Agency Resources * System Integration Resources * Glossary * About * Who We Are * Customer Benefits * Contact Us * International Locations * Consulting Account * My Account * Sign In * Create an Account Quick Links * Compare Models * Find Your Testing Solution * Send in Your Tester * Train Your Operators Search Search Categories Products See All Pages Popular Suggestions Sorry, no results were found! Search Change * Sign In * Create an Account My Cart My Cart Close You have no items in your shopping cart. Previous Next Previous Next LEARN ABOUT OUR INDUSTRY-SPECIFIC SOLUTIONS Medical Appliance System Integrators Industrial Equipment Aerospace Lighting Consumer Electronics Test and Measurement Electric Vehicle OUR FULL LINE OF SAFETY PRODUCTS Loading... MULTIPLEXER HYAMP® OMNIA® II LINECHEK® II HYPOT® HYPOTULTRA® HYPOTMAX® MULTIPLEXER HYAMP® OMNIA® II LINECHEK® II HYPOT® HYPOTULTRA® HYPOTMAX® MULTIPLEXER HYAMP® OMNIA® II LINECHEK® II OUR CUSTOMER PROMISES Experts In Electrical Safety Compliance™ We build relationships with manufacturers around the globe who trust our products and expertise in electrical safety compliance testing to protect their employees and customers from the dangers of electricity. * Calibration * Repair * RMA Request * Quick Start Guides * Manuals * Specifications * Contact * Sitemap * Privacy Policy * * © 2022 Associated Research an Ikonix Brand 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?