Radiator Cooling Fan Switch sensor Fit For Acura CL TL Honda Accord Civic CRV 37760P00003

Quantity- 1pc
$11.85
Quantity
Free returns
Sustainably made
Secure payments
Description

Radiator Cooling Fan Switch sensor fits Acura HONDA Accord Civic CRV 37760P00003


Feature:

1: According to the original factory specifications,perfect match for the original car.

2: Own different test machines to design exact accurate parameter for our products.All switches were tested for performance.

3: Made by high quality material, lightweight, anti-rust, colorfast and durable.

4: Aftermarket product with premium quality.

5: Stable performance, high reliability,suitable for replacing your broken one.


Specifics:

Condition: 100% Brand New

Color: As shown in the picture

Type: Cooling Fan Switch sensor

Manufacturer Part Number: 37760-P00-003,37760P00003

Interchange Part Number: 37760-PHM-004£¬37760P00-003

Other Part Number: 37760P00004, TS-295£¬AM-27013994£¬37760PHM004

Fitment Type: Direct Replacement

Size: As shown in the picture

(Please allow 1-3 mm measuring deviation due to manual measurement.)


Fitment:

Fits for 2001-03 Acura CL Thermostat Housing Mounted V6 3.2L

Fits for 1997-99 Acura CL Thermostat Housing Mounted V6 3.0L

Fits for 1998-99 Acura CL Thermostat Housing Mounted L4 2.3L

Fits for 1997 Acura CL Thermostat Housing Mounted L4 2.2L

Fits for 1994-01 Acura Integra Radiator Fan Switch L4 1.8L

Fits for 2001-02 Acura MDX Thermostat Housing Mounted V6 3.5L

Fits for 2002-05 Acura RSX Radiator Fan Switch L4 2.0L

Fits for 1999-01 Acura TL V6 3.2L

Fits for 2002-03 Acura TL V6 3.2L

Fits for 1995-98 Acura TL L5 2.5L

Fits for 2004-05 Acura TSX Radiator Fan Switch L4 2.4L

Fits for 1998-02 Honda Accord Thermostat Housing Mounted V6 3.0L

Fits for 1995-97 Honda Accord Thermostat Housing Mounted V6 2.7L

Fits for 2003-04 Honda Accord Radiator Fan Switch L4 2.4L

Fits for 1998-02 Honda Accord Thermostat Housing Mounted L4 2.3L

Fits for 1994 Honda Accord Thermostat Housing Mounted L4 2.2L Federal Emissions

Fits for 1994-97 Honda Accord Thermostat Housing Mounted L4 2.2L

Fits for 2003-04 Honda Accord Radiator Fan Switch V6 3.0L

Fits for 1992-99 Honda Civic Radiator Fan Switch L4 1.6L

Fits for 1992-95 Honda Civic Radiator Fan Switch L4 1.5L

Fits for 1993-97 Honda Civic Del Sol Radiator Fan Switch L4 1.6L

Fits for 1993-95 Honda Civic Del Sol Radiator Fan Switch L4 1.5L

Fits for 2002-06 Honda CR-V Radiator Fan Switch L4 2.4L

Fits for 1997-01 Honda CR-V Radiator Fan Switch L4 2.0L

Fits for 2003-06 Honda Element Radiator Fan Switch L4 2.4L

Fits for 1999-04 Honda Odyssey Thermostat Housing Mounted V6 3.5L

Fits for 1998 Honda Odyssey Thermostat Housing Mounted L4 2.3L

Fits for 1995-97 Honda Odyssey Thermostat Housing Mounted L4 2.2L

Fits for 2003-04 Honda Pilot V6 3.5L

Fits for 2000-03 Honda S2000 Radiator Fan Switch L4 2.0L


Package Include:

1x Radiator Cooling Fan Switch sensor (instruction manual is not included)

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.

You may also like