standardelectricals.com
Open in
urlscan Pro
151.101.129.124
Public Scan
Submitted URL: https://www.standardelectricals.com/
Effective URL: https://standardelectricals.com/
Submission Tags: falconsandbox
Submission: On October 11 via api from US — Scanned from US
Effective URL: https://standardelectricals.com/
Submission Tags: falconsandbox
Submission: On October 11 via api from US — Scanned from US
Form analysis
2 forms found in the DOMGET https://standardelectricals.com/catalogsearch/result/
<form class="form minisearch sparsh-minisearch" id="search_mini_form" action="https://standardelectricals.com/catalogsearch/result/" method="get">
<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 Products" class="input-text" maxlength="128" role="combobox" aria-haspopup="false" aria-autocomplete="both" autocomplete="off">
<div class="nested">
<a class="action advanced" href="https://standardelectricals.com/catalogsearch/advanced/" data-action="advanced-search">
Advanced Search </a>
</div>
<div id="search-auto-complete" class="sparsh-search-auto-complete" style="display:none">
<div class="product-data" style="display:none">
<div class="sparsh-search-auto-complete-suggest" style="display:none">
<div class="title">Suggested Searches</div>
<ul id="sparsh-search-auto-complete-suggest" role="listbox">
</ul>
</div>
<div class="sparsh-search-auto-complete-category" style="display:none">
<div class="title"> Categories </div>
<ul id="sparsh-search-auto-complete-category" role="listbox">
</ul>
</div>
<div class="sparsh-search-auto-complete-product" style="display:none">
<div class="title"> Products <a class="sparsh-search-auto-complete-product-see-all">
See All <span class="sparsh-search-auto-complete-product-see-all-size"></span>
</a>
</div>
<ul id="sparsh-search-auto-complete-product" role="listbox">
</ul>
</div>
<div class="sparsh-search-auto-complete-cms-pages" style="display:none">
<div class="title"> CMS Pages </div>
<ul id="sparsh-search-auto-complete-cms-pages" 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").on('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://standardelectricals.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) {
SparshSearchAutoCompleteParseData(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 SparshSearchAutoCompleteParseData(result) {
var suggestCount = 0;
var productCount = 0;
var categoryCount = 0;
var cmsCount = 0;
var htmlSuggest = '';
var htmlProduct = '';
var htmlCategory = '';
var htmlCms = '';
$("#sparsh-search-auto-complete-suggest").html('');
$("#sparsh-search-auto-complete-product").html('');
$("#sparsh-search-auto-complete-category").html('');
$("#sparsh-search-auto-complete-cms-pages").html('');
$(".sparsh-search-auto-complete-suggest").hide();
$(".sparsh-search-auto-complete-product").hide();
$(".sparsh-search-auto-complete-category").hide();
$(".sparsh-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>';
// Remove store code from serach
var storeCodesPattern = /\/(havells_studio|lloyd|crabtree|reo)\//;
var cleanedUrl = suggestRes.url.replace(storeCodesPattern, '/');
htmlSuggest += '<a href="' + cleanedUrl + '" 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>';
});
$("#sparsh-search-auto-complete-suggest").append(htmlSuggest);
} else {
htmlSuggest += '<li>';
htmlSuggest += '<span>Sorry, no results were found!</span>';
htmlSuggest += '</li>';
$("#sparsh-search-auto-complete-suggest").append(htmlSuggest);
}
$(".sparsh-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>';
});
$("#sparsh-search-auto-complete-category").append(htmlCategory);
$(".sparsh-search-auto-complete-category").show();
} else {
htmlCategory += '<li>';
htmlCategory += '<span>Sorry, no results were found!</span>';
htmlCategory += '</li>';
//$("#sparsh-search-auto-complete-category").append(htmlCategory);
}
//$(".sparsh-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 + '">';
if (cmsRes.title.toLowerCase().indexOf($("#search").val().toLowerCase()) != -1) {
var res = cmsRes.title.replace(eval("/" + $("#search").val() + "/i"), '<strong>' + $("#search").val() + '</strong>');
htmlCms += res;
} else {
htmlCms += '<span>' + cmsRes.title + '</span>';
}
htmlCms += '</a>';
htmlCms += '</li>';
});
$("#sparsh-search-auto-complete-cms-pages").append(htmlCms);
} else {
htmlCms += '<li>';
htmlCms += '<span>Sorry, no results were found!</span>';
htmlCms += '</li>';
$("#sparsh-search-auto-complete-cms-pages").append(htmlCms);
}
$(".sparsh-search-auto-complete-cms-pages").show();
}
if (res.code == 'product') {
productCount = productCount + res.data.length;
if (res.data.length > 0) {
// Remove store code from serach
var storeCodesPattern = /\/(havells_studio|lloyd|crabtree|reo)\//;
$(".sparsh-search-auto-complete-product-see-all").attr("href", res.url);
$(".sparsh-search-auto-complete-product-see-all-size").text(res.size);
$(".sparsh-search-auto-complete-product-see-all").show();
res.data.forEach(function(productRes) {
htmlProduct += '<li>';
if (productRes.image) {
var cleanedProductUrl = productRes.url.replace(storeCodesPattern, '/');
htmlProduct += '<div class="qs-option-image">';
htmlProduct += '<a href="' + cleanedProductUrl + '" title="' + productRes.name + '">';
htmlProduct += '<img src="' + productRes.image + '" title="' + productRes.name + '" />';
htmlProduct += '</a>';
htmlProduct += '</div>';
}
htmlProduct += '<div class="qs-option-info">';
if (productRes.name) {
var cleanedProductUrl = productRes.url.replace(storeCodesPattern, '/');
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="' + cleanedProductUrl + '" title="' + productRes.name + '">' + res + '</a>';
} else {
htmlProduct += '<a href="' + cleanedProductUrl + '" 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>';
});
$("#sparsh-search-auto-complete-product").append(htmlProduct);
} else {
$(".sparsh-search-auto-complete-product-see-all").hide();
htmlProduct += '<li>';
htmlProduct += '<span>Sorry, no results were found!</span>';
htmlProduct += '</li>';
$("#sparsh-search-auto-complete-product").append(htmlProduct);
}
$(".sparsh-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">
<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://standardelectricals.com/customer/account/forgotpassword/">
<span data-bind="i18n: 'Forgot Your Password?'">Forgot Your Password?</span>
</a>
</div>
</div>
</div>
</form>
Text Content
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. Search Search Advanced Search Suggested Searches Categories Products See All CMS Pages Sorry, no results were found! Search Toggle Nav Menu * Fans * Ceiling Fans * Exhaust Fans * Portable Fans * Switches * Zoe * IVY * Water Heaters * Plastic Storage Water Heater * Metal Storage Water Heater * Instant Water Heater * Accessories * Accessories * Flexible Cables * Heatshield FR Class 2 * Homeshield FR Class 5 * Communication Cables * Flat Cables * Multicore Cables * Switchgears * Circuit Breaker * Fans * Fans Ceiling Fans * Exhaust Fans * Portable Fans * Switches * Switches Zoe * IVY * Water Heaters * Water Heaters Plastic Storage Water Heater * Metal Storage Water Heater * Instant Water Heater * Accessories * Accessories Accessories * Flexible Cables * Flexible Cables Heatshield FR Class 2 * Homeshield FR Class 5 * Communication Cables * Flat Cables * Multicore Cables * Switchgears * Switchgears Circuit Breaker * Fans * Ceiling Fans * Exhaust Fans * Portable Fans * Switches * Zoe * IVY * Water Heaters * Plastic Storage Water Heater * Metal Storage Water Heater * Instant Water Heater * Accessories * Accessories * Flexible Cables * Heatshield FR Class 2 * Homeshield FR Class 5 * Communication Cables * Flat Cables * Multicore Cables * Switchgears * Circuit Breaker Cart Cart 0 Close You have no items in your shopping cart. Skip to Content * * Search Menu HOME PAGE * 1 * 2 * 3 * 4 * 5 * 6 What's new at Standard What's new at Standard What's new at Standard What's new at Standard * 1 * 2 * 3 OUR PRODUCT RANGE FANS SWITCHES WATER HEATERS ACCESSORIES DOMESTIC SWITCHGEARS CABLES ABOUT THE BRAND Standard Electricals, a leading Fast Moving Electrical Goods (FMEG) company in India, has been synonymous with high-quality products for over 60 years. Renowned for its switchgears, Standard Electricals is a key player in the MCB manufacturing industry. Committed to growth, Standard Electricals continually enhances its product range, which includes MCBs, RCCBs, Distribution Boards (DBs), Modular Switches, Copper Flexible Cables, Fans, and Electric Water Heaters. Discover More STANDARD ELECTRICALS INFRASTRUCTURE 39 Branch Offices 3K+ Authorised Dealers 22K+ Strong Retail Outlets Welcome to Standard Electricals Standing Tall Since 1958 CUSTOMER TESTIMONIALS Previous Before switching to the Droid Water Heater, I was frustrated with unpredictable water temperatures and long wait times. Now, I get consistent hot water instantly whenever I need it. I’m extremely satisfied with my purchase! Rakesh Yadav DROID WATER HEATER 25 L I wanted a fan that combined sleek design with top-notch performance, and the new STANDARD Dasher Prime has truly exceeded my expectations. It’s stylish look perfectly complements my home decor, and its powerful performance has been a game-changer this summer. Nandini Wadhwa DASHER PRIME FAN The design is fantastic. The sleek, modern look of the Zoe Switches fits seamlessly with my home decor. They add a touch of elegance to every room. Seema Saluja ZOE SWITCHES Next STANDARD ELECTRICALS BLOGS POINTS TO CONSIDER BEFORE BUYING MODULAR SWITCHES Electrical switches make an essential part of your space. No matter how small or big is your space... Read More ADVANTAGE OF INSTANT WATER HEATER YOU NEED TO KNOW Water heaters are the most common water heating appliance found in almost every home... Read More View All Blogs CONTACT US GET IN TOUCH Have a question or need directions? We’re here to help you get to the right place. Contact Us STANDARD ELECTRICALS GLOBAL HEADQUARTERS QRG Towers, 2D, Sec- 126, Expressway, Noida - 201304, U.P.(India) Our Other Branches PRODUCT COMPLAINT customercare@havells.com Consumer care no.: 8045 77 1313 (all connections) 011-41660303 PRODUCT QUERIES stantard.ho@havells.com (+91) 120 477 1000 (0120) 477 2481/ 477 2483 STANDARD * About Us * Milestone * Work Culture * Blogs * Contact Us * Career BRANDING INITIATIVES * TV Commercials * Press Release * Print Advertisements * Coverage * Brochures & Price List * E-Waste Awareness DISTRIBUTION NETWORK * Dealers * Branches * Exclusive Brand Shops INTERNATIONAL BUSINESS * Business Overseas SUPPORT * Service Request * Register Product * Privacy Policy * Shipping Policy * Returns and Cancellations Policy * Disclaimer * Terms of Use STANDARD CONNECT 804 577 1313 WHATSAPP SUPPORT 971 177 3333 How To Register With Us All trademarks used herein are property of their respective owners. Any use of third party trademarks is for identification purposes only and does not imply endorsement. MANUFACTURER / IMPORTER Havells India Ltd. REGISTERED OFFICE 904, Surya Kiran Building, K.G. Marg, New Delhi – 110001. (India) CORPORATE OFFICE QRG Towers, 2D, Sec- 126, Expressway Noida - 201304 U.P. (India) SOCIAL MEDIA Privacy Policy © Copyright 2019 - 2024 Havells India Ltd. All rights reserved. Terms & Conditions TERMS & CONDITIONS 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? * Fans * Switches * Water Heaters * Accessories * Flexible Cables * Switchgears * Fans Ceiling Fans * Exhaust Fans * Portable Fans * Switches Zoe * IVY * Water Heaters Plastic Storage Water Heater * Metal Storage Water Heater * Instant Water Heater * Accessories Accessories * Flexible Cables Heatshield FR Class 2 * Homeshield FR Class 5 * Communication Cables * Flat Cables * Multicore Cables * Switchgears Circuit Breaker