Share on:
Neutral Safety Switch Standard Motor Products NS194 Neutral/Backup SwitchFound a lower price? Let us know. Although we can't match every price reported, we'll use your feedback to ensure that our prices remain competitive. Store (Offline) Store name: City: State: Please select province Please select province Price: ($) Date of the price: 01 02 03 04 05 06 07 08 09 10 11 12 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 / Please sign in to provide feedback. Submit Feedback P.when("A", "a-modal", "ready").execute(function (A, modal) { var $ = A.$; var instance; var title = $("#modalHeader").val(); A.declarative("pricingFeedback-modal-button", "click", function (event) { if (!instance) { var options = { name: "pricingFeedback-modal-content", dataStrategy: "preload", }; instance = modal.create(event.$target, options); } instance.update({ "header": title, "width": "550" }).lock().show(); }); }); P.when('A', 'ready').execute(function (A) { var $ = A.$; var csrf = $("#aapiCsrfToken").val(); var productPrice = $("#priceValue").val(); var hostname = $("#absoluteUrlPrefix").val(); var customerId = $("#customerId").val(); var isCustomerRecognized = ($("#isCustomerLoggedIn").val() === 'true'); var isCurrentGlOnlineOnly = ($("#isCurrentGlOnlineOnly").val() === 'true'); var asin = $("#asin").val(); var marketplaceId = $("#marketplaceId").val(); var country = $("#countryCode").val(); var offlineStoresList = $("#offlineStoresList").val(); var statesList = $("#statesList").val(); var errorMessages = { errorNoRetailerType: $("#errorNoType").val(), errorBadPrice: $("#errorBadPrice").val(), errorBadPriceShipping: $("#errorBadPriceShipping").val(), errorInvalidUrl: $("#errorInvalidUrl").val(), errorSubmission: $("#errorSubmission").val(), errorEmptyFields: $("#errorEmptyFields").val(), thankFeedback: $("#thankFeedback").val() }; var feedbackFormContent = document.querySelector('#feedbackForm'); var signUpContainer = document.querySelector('#signUpForm'); var feedbackFormFinalStateContainer = document.querySelector('#feedbackFormFinalState'); var states = JSON.parse(statesList); var offlineStores = JSON.parse(offlineStoresList); var offlineStoresEnabled = !isCurrentGlOnlineOnly; var currentDate = getCurrentDay(); var currentMonth = getCurrentMonth(); var currentYear = getCurrentYear(); if (isCustomerRecognized) { feedbackFormContent.style['display'] = 'block'; feedbackFormFinalStateContainer.style['display'] = 'block'; signUpContainer.style['display'] = 'none'; var enableOnlineStoreRadio = document.querySelector('#pricingFeedback_onlineRadio'); var enableOfflineStoreRadio = document.querySelector('#pricingFeedback_offlineRadio'); var onlineStoreInputForm = document.querySelector('#pricingFeedback_onlineInput'); var offlineStoreInputForm = document.querySelector('#pricingFeedback_offlineInput'); var offlineStateSelect = document.querySelector('#offlineState'); var offlineStoreSelect = document.querySelector('#offlineStoreNameList'); var submitButton = document.querySelector('#pricingFeedback_submit'); var onlineUrl = document.querySelector('#onlineUrl'); var onlinePriceRaw = document.querySelector('#onlinePriceRaw'); var onlineShippingRaw = document.querySelector('#onlineShippingRaw'); var onlineDay = document.querySelector('#onlineDay'); var onlineMonth = document.querySelector('#onlineMonth'); var onlineYear = document.querySelector('#onlineYear'); var onlineCalendar = document.querySelector('#onlineCalendar'); var offlineRadioContainer = document.querySelector('#offlineRadioContainer'); var offlineStoreName = document.querySelector('#offlineStoreName'); var offlineCity = document.querySelector('#offlineCity'); var offlineState = document.querySelector('#offlineState'); var offlinePriceRaw = document.querySelector('#offlinePriceRaw'); var offlineDay = document.querySelector('#offlineDay'); var offlineMonth = document.querySelector('#offlineMonth'); var offlineYear = document.querySelector('#offlineYear'); var offlineCalendar = document.querySelector('#offlineCalendar'); var thankYouDiv = document.querySelector('#pricingFeedback_thank'); var errorDiv = document.querySelector('#pricingFeedback_error'); var loadingGifDiv = document.querySelector('#loading'); setCalenderOrderBasedOnCountry(country); setInitialStates( onlineMonth, currentMonth, offlineMonth, onlineDay, currentDate, offlineDay, onlineYear, currentYear, offlineYear, onlineStoreInputForm, offlineStoreInputForm, enableOfflineStoreRadio, enableOnlineStoreRadio, onlineCalendar, offlineCalendar ); createPermalinkContainer(asin, hostname); for (let state of states) { var option = document.createElement('option'); option.setAttribute('value', state['value']); option.innerText = state['name']; offlineStateSelect.appendChild(option); } for (let store of offlineStores) { var option = document.createElement('option'); option.setAttribute('value', store); offlineStoreSelect.appendChild(option); } $("#pricingFeedback_onlineRadio").click(function () { onlineStoreInputForm.style['display'] = 'table'; offlineStoreInputForm.style['display'] = 'none'; }); $("#pricingFeedback_offlineRadio").click(function () { onlineStoreInputForm.style['display'] = 'none'; offlineStoreInputForm.style['display'] = 'table'; }); if (!offlineStoresEnabled) { offlineRadioContainer.style['display'] = 'none'; offlineStoreInputForm.style['display'] = 'none'; } $("#pricingFeedback_submit").click(function () { var feedbackSubmitted = submitFeedback( customerId, marketplaceId, asin, productPrice, onlineStoreInputForm, offlineStoreInputForm, onlineUrl.value, onlinePriceRaw.value, onlineShippingRaw.value, onlineDay.value, onlineMonth.value, offlineStoreName.value, offlineCity.value, offlineState.value, offlinePriceRaw.value, offlineDay.value, offlineMonth.value, thankYouDiv, errorDiv, submitButton, loadingGifDiv, errorMessages ); if (feedbackSubmitted !== null && !feedbackSubmitted) { errorDiv.innerHTML = getErrorDiv(errorMessages.errorSubmission); } }); A.on("a:popover:beforeHide:pricingFeedback-modal-content", function (data) { resetModalToInitialState(currentMonth, currentDate, currentYear); }); } else { feedbackFormContent.style['display'] = 'none'; feedbackFormFinalStateContainer.style['display'] = 'none'; signUpContainer.style['display'] = 'block'; var authPortalLink = getAuthenticationPageURL(asin, hostname); $("#signUpForm").one("click", function () { window.location = encodeURI(authPortalLink); }); } function setCalenderOrderBasedOnCountry(country) { var monthSections = document.getElementsByClassName('monthSection'); var daySections = document.getElementsByClassName('daySection'); var yearSections = document.getElementsByClassName('yearSection'); var firstDelimiters = document.getElementsByClassName('firstDelimiter'); var secondDelimiters = document.getElementsByClassName('secondDelimiter'); if (country === 'US') { for (let i = 0; i < 2; i++) { (monthSections[i]).style['order'] = '-1'; (firstDelimiters[i]).style['order'] = '0'; (daySections[i]).style['order'] = '1'; (secondDelimiters[i]).style['order'] = '2'; (yearSections[i]).style['order'] = '3'; } } else if (country === 'JP') { for (let i = 0; i < 2; i++) { (yearSections[i]).style['order'] = '-1'; (secondDelimiters[i]).style['order'] = '0'; (monthSections[i]).style['order'] = '1'; (firstDelimiters[i]).style['order'] = '2'; (daySections[i]).style['order'] = '3'; } } else { for (let i = 0; i < 2; i++) { (daySections[i]).style['order'] = '-1'; (firstDelimiters[i]).style['order'] = '0'; (monthSections[i]).style['order'] = '1'; (secondDelimiters[i]).style['order'] = '2'; (yearSections[i]).style['order'] = '3'; } } } function createPermalinkContainer(asin, hostname) { var permalinkHref = getPermalink(hostname, asin); var permalinkContainer = document.querySelector('#permalink'); var permalink = document.createElement('a'); permalink.setAttribute('href', permalinkHref); permalink.innerText = permalinkHref; permalinkContainer.append(permalink); } function getPermalink(server, asin) { return server + '/dp/' + asin; } function triggerPricingFeedback( customerId, marketplaceId, asin, price, retailerType, retailerUrl, retailerName, retailerCity, retailerState, retailerPrice, retailerShipping, sampleDate ) { var dataCart = { ourPrice: parseInt(price), retailer: { type: retailerType, name: retailerName, city: retailerCity, state: retailerState, price: parseInt(retailerPrice), shippingCost: parseInt(retailerShipping), url: retailerUrl }, date: sampleDate + "T00:00:00.102Z" }; return new Promise((resolve, reject) => { A.$.ajax($("#aapiEndpoint").val() + "/api/marketplaces/" + marketplaceId + "/products/" + asin + "/feedback/pricing", { type: 'POST', headers: { 'Accept-Language': 'en-US', 'Accept': 'application/vnd.com.amazon.api+json; type="product.feedback.pricing/v1"', 'Content-Type': 'application/vnd.com.amazon.api+json; type="product.feedback.pricing.request/v1"', 'x-api-csrf-token': csrf }, data: JSON.stringify(dataCart), xhrFields: { withCredentials: true }, success: function (responseContent) { $("#pricingFeedback_thankcontent").innerText = "Success! " + responseContent.toString(); resolve(); }, error: function (err) { $("#pricingFeedback_thankcontent").innerText = "Error! " + err.toString(); reject(); } }) }) } function getAuthenticationPageURL(asin, hostname) { return hostname + '/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http://specs.openid.net/auth/2.0/identifier_select&openid.identity=http://specs.openid.net/auth/2.0/identifier_select&openid.mode=checkid_setup&openid.ns=http://specs.openid.net/auth/2.0&openid.ns.pape=http://specs.openid.net/extensions/pape/1.0&openid.pape.max_auth_age=0&openid.return_to=https://www.amazon.com/dp//'; } function getCurrentDay() { var date = new Date(); return date.getDate().toString(); } function getCurrentMonth() { var date = new Date(); return (date.getMonth() + 1).toString(); } function getCurrentYear() { var date = new Date(); return date.getFullYear().toString(); } function setInitialStates(onlineMonth, currentMonth, offlineMonth, onlineDay, currentDate, offlineDay, onlineYear, currentYear, offlineYear, onlineStoreInputForm, offlineStoreInputForm, enableOfflineStoreRadio, enableOnlineStoreRadio, onlineCalendar, offlineCalendar) { onlineMonth.defaultValue = currentMonth; offlineMonth.defaultValue = currentMonth; onlineDay.defaultValue = currentDate; offlineDay.defaultValue = currentDate; onlineYear.defaultValue = currentYear; offlineYear.defaultValue = currentYear; var onlineMonthOption = document.querySelector('#onlineMonthOptionDefault'); onlineMonthOption.innerText = currentMonth; var onlineMonthPrompt = document.querySelector('#onlineMonthPrompt'); onlineMonthPrompt.innerText = currentMonth; var offlineMonthOption = document.querySelector('#offlineMonthOptionDefault'); offlineMonthOption.innerText = currentMonth; var offlineMonthPrompt = document.querySelector('#offlineMonthPrompt'); offlineMonthPrompt.innerText = currentMonth; var onlineDateOption = document.querySelector('#onlineDateOptionDefault'); onlineDateOption.innerText = currentDate; var onlineDayPrompt = document.querySelector('#onlineDatePrompt'); onlineDayPrompt.innerText = currentDate; var offlineDateOption = document.querySelector('#offlineDateOptionDefault'); offlineDateOption.innerText = currentDate; var offlineDayPrompt = document.querySelector('#offlineDatePrompt'); offlineDayPrompt.innerText = currentDate; var onlineYearOption = document.querySelector('#onlineYearOptionDefault'); onlineYearOption.setAttribute('href', currentYear); onlineYearOption.innerText = currentYear; var onlineYearPrompt = document.querySelector('#onlineYearPrompt'); onlineYearPrompt.innerText = currentYear; var offlineYearOption = document.querySelector('#offlineYearOptionDefault'); offlineYearOption.setAttribute('href', currentYear); offlineYearOption.innerText = currentYear; var offlineYearPrompt = document.querySelector('#offlineYearPrompt'); offlineYearPrompt.innerText = currentYear; if (onlineMonth.children && offlineMonth.children && onlineDay.children && offlineDay.children) { onlineMonth.children[currentMonth].setAttribute('selected', currentMonth); offlineMonth.children[currentMonth].setAttribute('selected', currentMonth); onlineDay.children[currentDate].setAttribute('selected', currentDate); offlineDay.children[currentDate].setAttribute('selected', currentDate); } onlineStoreInputForm.style['display'] = 'none'; offlineStoreInputForm.style['display'] = 'none'; enableOfflineStoreRadio.checked = false; enableOnlineStoreRadio.checked = false; if (onlineCalendar.style && offlineCalendar.style) { onlineCalendar.style['display'] = 'flex'; offlineCalendar.style['display'] = 'flex'; } } function submitFeedback( customerId, marketplaceId, asin, price, onlineStoreInputForm, offlineStoreInputForm, onlineUrl, onlinePriceRaw, onlineShippingRaw, onlineDay, onlineMonth, offlineStoreName, offlineCity, offlineState, offlinePriceRaw, offlineDay, offlineMonth, thankYouDiv, errorDiv, submitButton, loadingGifDiv, errorMessages ) { errorDiv.innerHTML = ''; let cleanRetailerType, cleanRetailerUrl, cleanRetailerName, cleanRetailerCity, cleanRetailerState, cleanRetailerPrice, cleanRetailerShipping, cleanSampleDate; var currentYear = getCurrentYear(); if (onlineStoreInputForm.style['display'] === 'table') { var onlineValidity = validateOnlineInputs(onlineUrl, onlinePriceRaw, onlineShippingRaw, errorMessages); if (onlineValidity.valid) { cleanRetailerType = 'ONLINE'; cleanRetailerUrl = truncate(trim(onlineUrl), 300); cleanRetailerPrice = trim(onlinePriceRaw); cleanRetailerShipping = trim(onlineShippingRaw); if (!cleanRetailerShipping) { cleanRetailerShipping = '0'; } cleanSampleDate = formatDate( currentYear, onlineDay ? onlineDay : getCurrentDay(), onlineMonth ? onlineMonth : getCurrentMonth() ); } else { if (onlineValidity.error) { errorDiv.innerHTML = getErrorDiv(onlineValidity.error); } return null; } } else if (offlineStoreInputForm.style['display'] === 'table') { var offlineValidity = validateOfflineInputs( offlineStoreName, offlineCity, offlineState, offlinePriceRaw, errorMessages ); if (offlineValidity.valid) { cleanRetailerType = 'OFFLINE'; cleanRetailerName = truncate(trim(offlineStoreName), 100); cleanRetailerCity = truncate(trim(offlineCity), 100); cleanRetailerState = truncate(trim(offlineState), 100); cleanRetailerPrice = trim(offlinePriceRaw); cleanRetailerShipping = '0'; cleanSampleDate = formatDate( currentYear, offlineDay ? offlineDay : getCurrentDay(), offlineMonth ? offlineMonth : getCurrentMonth() ); } else { if (offlineValidity.error) { errorDiv.innerHTML = getErrorDiv(offlineValidity.error); } return null; } } else { errorDiv.innerHTML = getErrorDiv(errorMessages.errorNoRetailerType); return null; } loadingGifDiv.innerHTML = getLoadingGifDiv(); if (price) price = parseFloat(price); return triggerPricingFeedback( customerId, marketplaceId, asin, price, cleanRetailerType, cleanRetailerUrl, cleanRetailerName, cleanRetailerCity, cleanRetailerState, parseFloat(cleanRetailerPrice), parseFloat(cleanRetailerShipping), cleanSampleDate ) .then(response => { errorDiv.innerHTML = ''; thankYouDiv.innerHTML = getThankYouDiv(errorMessages.thankFeedback); submitButton.style.display = 'none'; return response; }) .catch(err => { errorDiv.innerHTML = getErrorDiv(errorMessages.errorSubmission); return null; }); } function validateOnlineInputs(url, onlinePrice, onlineShipping, errorMessages) { if (isEmptyValue(url) || isEmptyValue(onlinePrice)) { return { valid: false, error: errorMessages.errorEmptyFields }; } else if (!isValidUrl(url)) { return { valid: false, error: errorMessages.errorInvalidUrl }; } else if (!isNumericPrice(onlinePrice) || (!isEmptyValue(onlineShipping) && !isNumericPrice(onlineShipping))) { return { valid: false, error: errorMessages.errorBadPriceShipping }; } return { valid: true, error: null }; } function validateOfflineInputs(offlineStoreName, offlineCity, offlineState, offlinePrice, errorMessages) { if ( isEmptyValue(offlineStoreName) || isEmptyValue(offlineCity) || isEmptyValue(offlineState) || isEmptyValue(offlinePrice) ) { return { valid: false, error: errorMessages.errorEmptyFields }; } else if (!isNumericPrice(offlinePrice)) { return { valid: false, error: errorMessages.errorBadPrice }; } return { valid: true, error: null }; } function getErrorDiv(errorMsg) { return ( '\n' + ' ' + errorMsg + '\n' + ' ' ); } function getThankYouDiv(thankMsg) { return ( '' + '' + thankMsg + '\n' + '' ); } function getLoadingGifDiv() { return ''; } function isValidUrl(url) { if (!url) { return false; } var encodedUrl = encodeURI(url); return encodedUrl.match( /^(https?:\/\/)?(([a-z0-9-]|%[A-F0-9]{2})+\.)+(([a-z]|%[A-F0-9]{2})([a-z0-9]|%[A-F0-9]{2})*)(:[0-9]+)?(\/[a-z0-9;:,~!+#@&=%\/$\.?_-]+)?$/ ); } function isNumericPrice(price) { if (!price) { return false; } return price.match(/^([0-9]+\.?[0-9]*)$|^([0-9]*\.[0-9]+)$/); } function isEmptyValue(input) { return !input || input.length === 0 || input.match(/^\s*$/); } function truncate(input, length) { if (!input) { return ''; } else { return input.substr(0, length); } } function formatDate(year, date, month) { return year + '-' + month + '-' + date; } function trim(input) { if (!input) { return ''; } else { return input.trim(); } } function resetModalToInitialState(currentMonth, currentDate, currentYear) { var enableOnlineStoreRadio = document.querySelector('#pricingFeedback_onlineRadio'); var enableOfflineStoreRadio = document.querySelector('#pricingFeedback_offlineRadio'); var onlineStoreInputForm = document.querySelector('#pricingFeedback_onlineInput'); var offlineStoreInputForm = document.querySelector('#pricingFeedback_offlineInput'); var onlineUrl = document.querySelector('#onlineUrl'); var onlinePriceRaw = document.querySelector('#onlinePriceRaw'); var onlineShippingRaw = document.querySelector('#onlineShippingRaw'); var onlineDay = document.querySelector('#onlineDay'); var onlineMonth = document.querySelector('#onlineMonth'); var onlineYear = document.querySelector('#onlineYear'); var onlineCalendar = document.querySelector('#onlineCalendar'); var offlineStoreName = document.querySelector('#offlineStoreName'); var offlineCity = document.querySelector('#offlineCity'); var offlineState = document.querySelector('#offlineState'); var offlinePriceRaw = document.querySelector('#offlinePriceRaw'); var offlineDay = document.querySelector('#offlineDay'); var offlineMonth = document.querySelector('#offlineMonth'); var offlineYear = document.querySelector('#offlineYear'); var offlineCalendar = document.querySelector('#offlineCalendar'); var thankYouDiv = document.querySelector('#pricingFeedback_thank'); var errorDiv = document.querySelector('#pricingFeedback_error'); var submitButton = document.querySelector('#pricingFeedback_submit'); var loadingGifDiv = document.querySelector('#loading'); var stateDefaultOption = document.querySelector('#stateDefaultOption'); var stateDefaultPrompt = document.querySelector('#stateDefaultPrompt'); if (thankYouDiv) { thankYouDiv.innerHTML = ''; } if (errorDiv) { errorDiv.innerHTML = ''; } if (loadingGifDiv) { loadingGifDiv.innerHTML = ''; } if (submitButton) { submitButton.style.display = 'block'; } onlineUrl.value = ''; onlinePriceRaw.value = ''; onlineShippingRaw.value = ''; offlineStoreName.value = ''; offlineCity.value = ''; offlineState.value = ''; offlinePriceRaw.value = ''; stateDefaultOption.innerHTML = $("#selectProvince").val(); stateDefaultPrompt.innerHTML = $("#selectProvince").val(); setInitialStates( onlineMonth, currentMonth, offlineMonth, onlineDay, currentDate, offlineDay, onlineYear, currentYear, offlineYear, onlineStoreInputForm, offlineStoreInputForm, enableOfflineStoreRadio, enableOnlineStoreRadio, onlineCalendar, offlineCalendar ); } }); .postpurchase-included-components-list-item { text-align: left; word-wrap: break-word; } .postpurchase-included-components-list-group { margin: 0 0 1px 18px; } .ask-product-docs-expander-content { padding-left: 0; margin-top: 0; } {} Compare with similar items This item Standard Motor Products NS194 Neutral/Backup Switch Beck/Arnley Back-Up Switch - 201-1788 Standard Motor Products LS285 Neutral/Backup Switch Dorman 917-602 Automatic Transmission Speed Sensor Compatible with Select Models #1 Best Seller Standard Motor Products NS85T Neutral/Backup/Safety Switch #1 Best Seller Toyota 84210-52050 Back Up Lamp Switch Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart Customer Rating 4.5 out of 5 stars (129) 4.7 out of 5 stars (321) 4.8 out of 5 stars (41) 4.5 out of 5 stars (720) 4.6 out of 5 stars (632) 4.9 out of 5 stars (79) Price $17.28$17.28 $14.59$14.59 $39.56$39.56 $15.52$15.52 $26.89$26.89 $22.88$22.88 Sold By Amazon.com Amazon.com Amazon.com Amazon.com Amazon.com Lahood Japan Compare with similar items P.when('cf').execute(function() { ue.count('dp:widget:dpxSize:dpxBTFSize', 138);}); if(window.mix_csa){window.mix_csa('[cel_widget_id="multi-brand-video-desktop_DPSims_3"]', '#CardInstance9pxNs-2z0z-Txr_8_XzIsg')('mark', 'bb')} if(window.uet){window.uet('bb','multi-brand-video-desktop_DPSims_3',{wb: 1})} ._multi-brand-video-desktop_style_mbvContainer__2A_sC{margin-bottom:24px;margin-top:8px}._multi-brand-video-desktop_style_mbvContainer__2A_sC [class=a-carousel-viewport]{height:auto!important}._multi-brand-video-desktop_style_carouselContainer__20DOZ{overflow:hidden}._multi-brand-video-desktop_style_carouselElement__3yEi0{margin-right:0;width:auto!important}._multi-brand-video-desktop_style_mbvContainer__2A_sC ._multi-brand-video-desktop_style_carouselHeading__12WJ7{margin-bottom:0;visibility:hidden}._multi-brand-video-desktop_style_mbvItem___XsOm{overflow:hidden;width:380px}._multi-brand-video-desktop_style_mbvInSearchContainer__2V1oJ ._multi-brand-video-desktop_style_mbvItem___XsOm{padding:0 4px}._multi-brand-video-desktop_style_mbvInSearchContainer__2V1oJ ._multi-brand-video-desktop_style_carouselElement__3yEi0{margin-left:0!important}._multi-brand-video-desktop_style_trackingPixel__Yoiar{position:absolute;visibility:hidden} ._multi-brand-video-desktop_style_content__2cgFQ{height:100%;position:relative;width:100px}._multi-brand-video-desktop_style_contentStores__2uIfX{height:100%;pointer-events:auto;position:relative;text-align:right;width:100%}._multi-brand-video-desktop_style_contentSingleBrand__3OD1y{height:100%;margin-bottom:4px!important;position:relative;width:100px}._multi-brand-video-desktop_style_contentSingleBrand__3OD1y a,._multi-brand-video-desktop_style_contentStores__2uIfX a,._multi-brand-video-desktop_style_content__2cgFQ a{font-size:11px!important;line-height:11px!important;position:relative!important;top:0!important}._multi-brand-video-desktop_style_sponsoredLabel__eko1c{display:block}._multi-brand-video-desktop_style_mobileSponsoredLabel__1IGUd{display:block;height:30px!important;margin-bottom:7px;margin-top:4px}._multi-brand-video-desktop_style_sponsoredLabelString__19rqh{color:#555;font-size:11px;line-height:11px!important} ._multi-brand-video-desktop_Carousel_carouselContainer__9vpf5{overflow:hidden}._multi-brand-video-desktop_Carousel_carouselHeading__l5qNS{margin-bottom:0}._multi-brand-video-desktop_Carousel_carouselContainer__9vpf5 ._multi-brand-video-desktop_Carousel_nextButton__Rs96u,._multi-brand-video-desktop_Carousel_carouselContainer__9vpf5 ._multi-brand-video-desktop_Carousel_prevButton__k3_G6{background-color:#fff;border:1px solid #d5d9d9;border-radius:8px;box-shadow:0 2px 6px 0 rgba(0,0,0,.16);height:48px;line-height:44px;position:absolute;text-align:center;top:45%;width:48px;z-index:100}._multi-brand-video-desktop_Carousel_carouselContainer__9vpf5 ._multi-brand-video-desktop_Carousel_prevButton__k3_G6{left:0}._multi-brand-video-desktop_Carousel_carouselContainer__9vpf5 ._multi-brand-video-desktop_Carousel_nextButton__Rs96u{right:0}._multi-brand-video-desktop_Carousel_pagination__3mHSx{margin-top:5px} ._multi-brand-video-desktop_style_brandVideoProductContainer__1qo2o{-webkit-box-orient:vertical;-webkit-box-direction:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%}._multi-brand-video-desktop_style_brandVideoProductContainer__1qo2o ._multi-brand-video-desktop_style_videoProductAdItem__3_zId{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%} ._multi-brand-video-desktop_style_videoProductContainer__2Gm7Y{-webkit-box-orient:vertical;-webkit-box-direction:normal;border:1px solid #ddd;border-radius:5px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;overflow:hidden;text-align:left;-webkit-transform:translateZ(0);transform:translateZ(0)}._multi-brand-video-desktop_style_videoVerticalLayoutContainer__1G6PS{border-top-left-radius:4px;border-top-right-radius:4px;overflow:hidden}._multi-brand-video-desktop_style_videoRowContainer__3GahZ{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}._multi-brand-video-desktop_style_videoHorizontalLayoutContainer__2AH_R ._multi-brand-video-desktop_style_productColumnContainer__2kL9q,._multi-brand-video-desktop_style_videoHorizontalLayoutContainer__2AH_R ._multi-brand-video-desktop_style_videoColumnContainer__1V7gR{margin-right:0!important;width:50%}._multi-brand-video-desktop_style_videoHorizontalLayoutContainer__2AH_R ._multi-brand-video-desktop_style_productColumnContainer__2kL9q{padding:0 10px}@media screen and (max-width:1250px){._multi-brand-video-desktop_style_videoHorizontalLayoutContainer__2AH_R:not(._multi-brand-video-desktop_style_multiProduct__3-e28) ._multi-brand-video-desktop_style_videoColumnContainer__1V7gR{width:65%}._multi-brand-video-desktop_style_videoHorizontalLayoutContainer__2AH_R:not(._multi-brand-video-desktop_style_multiProduct__3-e28) ._multi-brand-video-desktop_style_productColumnContainer__2kL9q{width:35%}} ._multi-brand-video-desktop_style_brandContainer__3tRuU{margin:8px 8px 8px 0}._multi-brand-video-desktop_style_nameContainer__3fF9z{margin-bottom:-3px} ._multi-brand-video-desktop_style_videoContainer__1fcYb{pointer-events:auto;position:relative;width:100%}._multi-brand-video-desktop_style_video__17g-f{display:block;height:auto;outline:none;width:100%}._multi-brand-video-desktop_style_videoOverlay__1H_Jm{padding-bottom:56.25%;position:absolute;top:0;width:100%}._multi-brand-video-desktop_style_audioToggleContainer__3fT8n{display:none}._multi-brand-video-desktop_style_audioToggleContainerPreview__2kjnW,._multi-brand-video-desktop_style_audioToggleContainer__3fT8n{-webkit-tap-highlight-color:rgba(0,0,0,0);bottom:0;height:44px;padding:5px;position:absolute;right:0;-webkit-transform:translateZ(0);transform:translateZ(0);width:44px;z-index:10}._multi-brand-video-desktop_style_audioToggleContainerPreview__2kjnW{display:block}._multi-brand-video-desktop_style_ccToggleContainer__3PYQ2{bottom:0;height:44px;left:0;padding:5px;position:absolute;width:44px;z-index:10}._multi-brand-video-desktop_style_playClickRegion__87ZZa{height:100%;left:0;position:absolute;top:0;-webkit-transform:translateZ(0);transform:translateZ(0);visibility:hidden;width:100%;z-index:10}._multi-brand-video-desktop_style_btnContainer__2bAO8{left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:20%} ._multi-brand-video-desktop_MultiProduct_multiProductContainer__1GbMC{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;width:100%} ._multi-brand-video-desktop_style_productContainer__N57_O{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}._multi-brand-video-desktop_style_productRow__Fc-QW{height:100%}._multi-brand-video-desktop_style_productRowContainer__nQruj,._multi-brand-video-desktop_style_productRow__Fc-QW>[class=a-fixed-left-grid-inner]{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}._multi-brand-video-desktop_style_productRowContainer__nQruj{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;justify-content:center;position:relative}._multi-brand-video-desktop_style_singleProductImageContainer__2tC7_{height:100%;width:100%}._multi-brand-video-desktop_style_singleProductImageContainer__2tC7_ img{max-height:250px!important}._multi-brand-video-desktop_style_productImage__2lYMQ{max-height:100%;max-width:100%;padding:5px}._multi-brand-video-desktop_style_productImageLink__3xdB3{-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%} ._multi-brand-video-desktop_Product_productContainer__2eu9t{height:100%;width:100%}._multi-brand-video-desktop_Product_productRowContainer__3lDEJ{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;justify-content:center;position:relative}._multi-brand-video-desktop_Product_productRowContainer__3lDEJ._multi-brand-video-desktop_Product_verticalOrientation__1IPo0{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}._multi-brand-video-desktop_Product_verticalOrientation__1IPo0 ._multi-brand-video-desktop_Product_productDetailsColumn__1dUoo,._multi-brand-video-desktop_Product_verticalOrientation__1IPo0 ._multi-brand-video-desktop_Product_productImageColumn__35mcV{width:100%!important}._multi-brand-video-desktop_Product_singleProductImageContainer__1xhVQ{height:100%;width:100%}._multi-brand-video-desktop_Product_desktopProductContainer__NWk91 ._multi-brand-video-desktop_Product_singleProductImageContainer__1xhVQ img{max-height:250px!important}:not(._multi-brand-video-desktop_Product_desktopProductContainer__NWk91) ._multi-brand-video-desktop_Product_singleProductImageContainer__1xhVQ img{max-height:170px!important}._multi-brand-video-desktop_Product_productImage__2HdBa{max-height:100%;max-width:100%;padding:5px}._multi-brand-video-desktop_Product_productImageLink__3vqfp{-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100px}@media screen and (max-width:1250px){._multi-brand-video-desktop_Product_desktopProductContainer__NWk91 ._multi-brand-video-desktop_Product_productRowContainer__3lDEJ{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-align:start;-ms-flex-align:start;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;align-items:flex-start;-ms-flex-direction:column;flex-direction:column;justify-content:space-evenly}._multi-brand-video-desktop_Product_desktopProductContainer__NWk91 ._multi-brand-video-desktop_Product_productDetailsColumn__1dUoo,._multi-brand-video-desktop_Product_desktopProductContainer__NWk91 ._multi-brand-video-desktop_Product_productImageColumn__35mcV{margin:0!important;width:100%!important}} ._multi-brand-video-desktop_style_audioToggle__2im9Z circle{fill:rgba(0,0,0,.5)}._multi-brand-video-desktop_style_audioToggle__2im9Z path{fill:#fff} ._multi-brand-video-desktop_Link_link__2AMAT{color:inherit;pointer-events:auto;position:relative;text-decoration:none!important;z-index:5}._multi-brand-video-desktop_Link_fullSize__20Juh{display:block;height:100%;width:100%}._multi-brand-video-desktop_Link_hidden__1bAqt,._multi-brand-video-desktop_Link_hidden__1bAqt:focus{outline:none!important} ._multi-brand-video-desktop_style_ccToggle__Nh6xl circle{fill:rgba(0,0,0,.5)}._multi-brand-video-desktop_style_ccToggle__Nh6xl path{fill:#fff}._multi-brand-video-desktop_style_ccButtonOff__3K1_1{opacity:0} ._multi-brand-video-desktop_style_productImageLinkContainer__3novt{height:100%;width:auto}._multi-brand-video-desktop_style_productImageContainer__1-a6X{height:100%;overflow:hidden;position:relative;text-align:center}._multi-brand-video-desktop_style_image__pQREQ{height:auto;mix-blend-mode:multiply;position:relative} ._multi-brand-video-desktop_Tint_tint__2SjfG{background:#879596;height:100%;left:0;opacity:.07;pointer-events:none;position:absolute;top:0;width:100%;z-index:6} ._multi-brand-video-desktop_style_productDetails__2_cOo{margin:4px}._multi-brand-video-desktop_style_productTitle__1rGyG{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;max-height:48px;overflow:hidden;text-overflow:ellipsis} ._multi-brand-video-desktop_style_ad-feedback-primary-link__2bIZi{height:30px;margin-bottom:7px;margin-top:4px;min-width:75px}._multi-brand-video-desktop_style_ad-feedback-text__2HjQ9{color:#555;font-family:Amazon Ember Regular,Amazon Ember,Arial;font-size:11px}._multi-brand-video-desktop_style_ad-feedback-sprite__28uwB{background-color:transparent;background-image:url(https://m.media-amazon.com/images/G/01/ad-feedback/info_icon_1Xsprite.png);background-position:0 0;background-repeat:no-repeat;color:#969696;display:inline-block;height:12px;margin:1px 0 1px 3px;vertical-align:text-top;width:14px}._multi-brand-video-desktop_style_ad-feedback-sprite-mobile__2_rj8{background-image:url(https://m.media-amazon.com/images/G/01/ad-feedback/default_info_icon_3x.png);background-repeat:no-repeat;background-size:contain;color:#969696;display:inline-block;height:12px;margin:1px 0 1px 3px;vertical-align:text-top;width:12px}._multi-brand-video-desktop_style_ad-feedback-text-desktop__q3xp_{color:#555;cursor:pointer;display:inline-block;font-family:Amazon Ember Regular,Amazon Ember,Arial;font-size:11px;right:0;top:2px}._multi-brand-video-desktop_style_ad-feedback-loading-spinnner__1nmZw{margin-left:45%;margin-top:250px}._multi-brand-video-desktop_style_ad-feedback-loading-spinnner-rtl__2BoOY{margin-right:45%;margin-top:250px} ._multi-brand-video-desktop_energy-efficiency_energy-efficiency-container__1Pkva{text-align:left}._multi-brand-video-desktop_energy-efficiency_energy-efficiency-badge-standard__28gp8{cursor:pointer;display:inline-block;height:24px}._multi-brand-video-desktop_energy-efficiency_energy-efficiency-badge-shape__1IcJY{display:inline-block;height:24px}._multi-brand-video-desktop_energy-efficiency_energy-efficiency-badge-rating__3_0eN{fill:#fff;font-size:20px;vertical-align:middle}._multi-brand-video-desktop_energy-efficiency_energy-efficiency-badge-rating-sign__1ronK{fill:#fff;font-size:14px;vertical-align:middle}._multi-brand-video-desktop_energy-efficiency_energy-efficiency-badge-rating-2021__2Q_3P{left:24px * .6;text-shadow:-.5px -.5px 0 #000,.5px -.5px 0 #000,-.5px .5px 0 #000,.5px .5px 0 #000}._multi-brand-video-desktop_energy-efficiency_energy-efficiency-badge-data-sheet-label-container__2iEi2{display:inline-block;padding-left:5px;padding-top:0;position:absolute;vertical-align:middle}._multi-brand-video-desktop_energy-efficiency_energy-efficiency-badge-data-sheet-label__3b6X3{cursor:pointer;word-break:break-word} ._multi-brand-video-desktop_style_dealLabel__1cgSU{border-radius:2px;font-size:11px;font-weight:700;margin-right:6px;padding:4px 6px;position:relative}._multi-brand-video-desktop_style_dealMessage__1qaio{-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:11px;font-weight:700;line-height:12px;position:relative}._multi-brand-video-desktop_style_badgeContainer__3rI4l{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:4px}._multi-brand-video-desktop_style_badgeOneLineContainer__2u_2T{-webkit-box-align:center;-ms-flex-align:center;align-items:center}._multi-brand-video-desktop_style_badgeTwoLineContainer__2UDlJ{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-ms-flex-direction:column;flex-direction:column}._multi-brand-video-desktop_style_badgeTwoLineContainer__2UDlJ:first-child{margin-bottom:4px} Similar brands on AmazonPage 1 of 1Start OverPage 1 of 1SponsoredPrevious pageAA IgnitionShop the Store on Amazon › Replacement 4WD Selector Switch - Compatible with Chevy & GMC Vehicles - K1500 1996-1999, K2500 Suburban, Tahoe, Suburban, 1996-2000 K2500, Yukon - Replaces 15969707, 19168766, 901-154, 9011544.7 out of 5 stars316$28.99$28.99 AiYiGuShop the Store on Amazon › AiYiGu Passenger Window Switch 22895545, Compatible with 2008-2011 Chevrolet HHR, 2007-2013 Chevrolet Silverado 1500/2500 HD/3500 HD/Suburban/GMC Sierra/Yukon/Buick Lucerne, Replaces 25877776 158881744.7 out of 5 stars238 ObaeeShop the Store on Amazon › Obaee Power Window Switch Door Lock Control Button Front Rear Passenger Side Compatible with 2005-2017 Nissan Frontier, 05-12 Pathfinder, 06-15 Xterra, 07-11 Murano Replace OEM 25411-EA03A 25411-EA0034.2 out of 5 stars19 Henge AutoShop the Store on Amazon › Henge Auto Master Window Switch Driver Side 8 + 8 Pins Compatible with 1999-2002 Chevy Silverado GMC Sierra 1500,2500,2500 HD,3500 2-Doors Pickup Truck,Replace OE 15047637 901-1174.0 out of 5 stars5$22.99$22.99 BASIKERShop the Store on Amazon › BASIKER Window Master Switch Bezel Fit for 2012-2015 Toyota Tacoma Front Left Side Door Window Switch Panel 74202-040405.0 out of 5 stars4$23.99$23.99 Next pageif(window.mix_csa){window.mix_csa('[cel_widget_id="multi-brand-video-desktop_DPSims_3"]', '#CardInstance9pxNs-2z0z-Txr_8_XzIsg')('mark', 'be')} if(window.uet){window.uet('be','multi-brand-video-desktop_DPSims_3',{wb: 1})} if(window.mixTimeout){window.mixTimeout('multi-brand-video-desktop', 'CardInstance9pxNs-2z0z-Txr_8_XzIsg', 90000)}; P.when('mix:@amzn/mix.client-runtime', 'mix:multi-brand-video-desktop__Hw5uapB1').execute(function (runtime, cardModule) {runtime.registerCardFactory('CardInstance9pxNs-2z0z-Txr_8_XzIsg', cardModule).then(function(){if(window.mix_csa){window.mix_csa('[cel_widget_id="multi-brand-video-desktop_DPSims_3"]', '#CardInstance9pxNs-2z0z-Txr_8_XzIsg')('mark', 'functional')}if(window.uex){window.uex('ld','multi-brand-video-desktop_DPSims_3',{wb: 1})}});}); P.load.js('https://images-na.ssl-images-amazon.com/images/I/61rlrKaSCsL.js?xcp'); (window.AmazonUIPageJS ? AmazonUIPageJS : P).load.js('https://images-na.ssl-images-amazon.com/images/I/31WkIngSZbL._RC|61-pW3C9dmL.js_.js?AUIClients/AskAuiAssets'); (function(f) {var _np=(window.P._namespace("AskAuiAssets"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { if (typeof P !== 'undefined') { P.when('askBrowseWidgetContentAjax').execute(function(askBrowseWidgetContentAjax) { askBrowseWidgetContentAjax.startLazyLoading(); }); } })); Looking for specific info? See questions and answers (window.AmazonUIPageJS ? AmazonUIPageJS : P).load.js('https://images-na.ssl-images-amazon.com/images/I/41mZH03vbIL._RC|01JMhqKAiVL.js,11KGVmb0nxL.js,41dL09N-ijL.js,31OqjYy-bxL.js,01VSu9SK-XL.js_.js?AUIClients/DesktopMedleyFilteringMetaAsset&AXTJ5Fo9#386124-T1.666973-T1'); Customer reviews4.5 out of 5 stars4.5 out of 5 129 global ratings 5 star 78% 4 star 10% 3 star 5% 2 star 2% 1 star 6% How customer reviews and ratings work Customer Reviews, including Product Star Ratings help customers to learn more about the product and decide whether it is the right product for them. To calculate the overall star rating and percentage breakdown by star, we don’t use a simple average. Instead, our system considers things like how recent a review is and if the reviewer bought the item on Amazon. It also analyzed reviews to verify trustworthiness.