Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
1/24
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
Smart Electric Rechargeable Heated Jacket
1/24

Smart Electric Rechargeable Heated Jacket

$49.99
$49.99
Save $0.00
Color
Please select a color
Style
Please select a style
Size
Please select a size
Quantity
Over $49.99 Free Shipping
30-day Zero-risk Return
100% Customer Satisfaction
Secure Payments
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.

Electric Heated Rechargeable Winter Motorcycle Hunting Coat Jacket

Avoid freezing in the cold by getting warm and cozy in our premium Heated Jacket. This amazing heated vest jacket provides you with protection from the cold and up to 3 heating levels to match your needs.

Our stylish heated coat comes in a unisex design and various sizes that every adult will enjoy. These heated jackets for men and women even come with a hoodie to protect your head from the cold.

To make things better, the electric jacket comes with multiple heating pads that are powered by your very own power bank. This premium heated hunting vest boasts a waterproof design, making it easy to clean and perfect for rainy days.

Best out of all, the battery heated jacket provides a comfy fit and adds to your overall style. This heated motorcycle jacket is perfect for all around and casual wear.

RECHARGEABLE HEATED JACKET FEATURES

Combat the harsh winter cold by wearing our thick and convenient electric heated jacket.

  • Warm and stylish heated winter jacket
  • USB power bank operated (not included) heating components
  • Provides you with 3 heat settings
  • Fitted with multiple carbon fiber heating panels
  • Designed with an internal zippered pocket with USB plug for power bank (not included)
  • Water-resistant and anti-static exterior material
  • Wind-resistant, lightweight, and made of high-quality cotton
  • Machine washable material (gentle cycle)
  • Advanced heat-trapping insulated layer

HEATED HUNTING JACKET SPECIFICATIONS

Material: Nylon + Polyester
Size: S/M/L/XL/2XL/3XL
Power Supply Interface: USB
Power Supply: 5V/2A Portable Source(Not Included)
Fever Area: Back + Hand
Function: Keep warm, Anti water splashing and Prevent cold
Three Stall Adjustable Temperature Control
Age of Application: Adult Men
Temperature Shift(Manual adjustment)
Warm:45 ℃ (Red Light)
Comfort:35 ℃ (White Light)
Energy Saving:25 ℃ (Blue Light)

 

Instructions:

  1. Take out the USB plug.
  2. Access to the mobile charging power source.
  3. Press and hold the chest temperature control output switch for 3 seconds.
  4. Long press the chest temperature control switch for 3 seconds, start to warm up and then adjust to the medium temperature heat when you need to always connect the mobile power.
  5. Manual adjustment to the third gear,warm temperature of 45 degrees Celsius, comfortable gear temperature of 35 degrees Celsius, energy-saving gear temperature of 25 degrees Celsius.
  6. Press and hold the chest temperature control switch for 3 seconds, and turn off the light to stop heating. 

Washing Tips: 

  • Machine wash & hand wash are available. Do not wring or twists.
  • Unplug the powers before washing and make sure it is dried before heating.

Package List: 

  • 1* Heated Jacket