2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence
2 In 1 Safe Wireless Dog Fence

2 In 1 Safe Wireless Dog Fence

Price

$109.99 $69.88
Save $40.11
3976 sold
Free Shipping
Free Returns
Sustainably Made
Secure Payments

size

Please select a size

Quantity

The #1 Best Selling Wireless Dog Fence of 2023

Let your pet have the freedom of your yard without the fear of them running away.

Your yard might be small. But that doesn't mean you have to keep your pet on a short leash. Exclusive Wireless Plus technology lets your dog or cat play right up to the edge of your property. It has an adjustable operating distance of 500m, that's 60% more distance than most wireless dog fences, making it the perfect fit for tight spaces or uniquely shaped lots. So, relax. And let your pet make the most of your (not-so-square) yardage.

Dog Wireless Electronic Fence Keeps Your Dog in a Safe Area

If your dog exceeds the range you've established, the receiver will initiate its training function automatically, which will remind the dog to return your designated safe area. Dog fence will begin vibrating for 3 to 4 seconds and then punishes with electric shocks. If your dog continues to leave, the process will repeat until your dog returns home. Afterward, the dog will not move forward when he feels the vibration warning.

Adjustable Long Range & Short Range Distance

Dog fence long-range distance gives your pet more room to run and play. With 1650ft/500m of adjustable distance you can set up your wireless dog fence anywhere.

The Static Electric Shock Mode of Operation

To conserve power, the receiver will go into standby mode if there are no operations within 1 minute. This will not affect the wireless fence operation, the fence and collar will remain on and active.

10Hr Backup Power Supply

Dog fence features a built-in 1000mah backup battery that lasts up to 10 hours. If your not at home and your power goes out, your pet will remain at home safe and secure.

  • Adjustable Training Levels
    Use this section to explain a set of product features, to link to a series of pages, or to answer common questions about your products. Add images for emphasis.
  • Completely Wireless

    Dog fence is 100% wireless saving you a lot of time during setup, theirs no wiring, and no burying.

  • Ultra Durable & Waterproof

    We know how destructive pets can be, Dog fence is ultradurable, waterproof and rechargeable.

How To Wear The Receiver To Your Pet

1. Put the Receiver on dog's neck;

2. The contact point reach to the skin of dog, you need to choose the suitable screw cap;

3. Adjust the belt collar, make your dog comfortable;

PACKAGE CONTENT

1 x Transmitter (built-in rechargeable lithium battery) 

1/2/3 x neck receiver (built-in rechargeable lithium battery) 

1 x Test light tool 

4 x Screws 

1 x User manual 

1 x Charger 

1 x USB cable 1/2/3

Our Guarantee

100% money back guarantee within 30 days. Provide immediate customer support within working days. Every order is checked and dispatched with high quality. Protect your payment security through PayPal and credit card. In order to ensure the quality of the products, we strictly control the production, and will only ship after the unified customized quality inspection is passed, so there will be 1-2 days of preparation time!

FAQs

1) Does it fit small dogs or hairy dogs?

The collar is perfect for any size. Just adjust the strap length to fit your dog's neck size. The hairy or trimmed collar can reach your dog's neck perfectly. Just attach the prong extender to the collar for your furry friend, that way it reaches their neck.

2) How long does the charge last on the receiver?

The charge lasts about 10 hours. Have in mind that if you have a lot of metal in the area the collar will tend to turn off

3) Does the system work for square and rectangular yards?

The collar works for all types of terrain and yards. Even if your yard is sloped or has hills the transmitter works perfectly for the perimeter.

4) If mounted inside, does the house become an obstacle or block the transmitter?

No, your house will not interfere with the signal. The built-in signal can even go through thick foliage and other items such as concrete and wooden walls. The signal penetrates obstacles easily ensuring a constant signal to the collar. This does not require WiFi or cellphone service to achieve. Turn on and pair, you're ready to go.

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.