Find Your Local Pet Stop Pro

Pet Stop Logo

  • Home
  • Why Pet Stop?
    • Invisible Fence History
    • Management Team
    • Owner’s Message
    • Contact Us
  • Products
    • Transmitters
    • Receivers
    • Specialty and Accessory Products
    • Batteries & More
    • Gentle Steps Training
    • Competitive Swap-Out Program
    • FAQ
    • Installation
  • Customer Care
  • Invisible Fence Compatible

Contact Pet Stop – Pet Fencing Company

Here at Pet Stop Pet Fence Systems, we care for our customers as much as we do our pets. We are dedicated to providing a superior level of service in the pet containment market.

Pet Stop Mailing Address:

Perimeter Technologies, Inc.
730 Hemlock Rd # 106
Morgantown, PA 19543


Downloads

  • Download Indoor Manual
  • Download Pet Stop Brochure
  • Download Outdoor Manual

Helpful Links

  • Frequently Asked Questions

Contact Us


Please Enter The Code:
DEALER LOGIN
Your Privacy | Sitemap

Pet Stop Dog Fence Company
Copyright © 2013 All Rights Reserved
Perimeter Technologies is not associated with Invisible Fence, Dog Guard, Dog Watch or PetSafe.
These trademarks are the property of their respective owners.

View Full Site
        	// viewport stuff
                var targetWidth = 960;
                var deviceWidth = 'device-width';
                var viewport = $('meta[name="viewport"]');
                
                // check to see if local storage value is set on page load
                localStorage.isResponsive = (localStorage.isResponsive == undefined) ? 'true' : localStorage.isResponsive;
                
                var showFullSite = function(){    
                    viewport.attr('content', 'width=' + targetWidth);  
                    
                    if(!$('#view-options #view-responsive').length){
                        $('#view-options').append('View Mobile Optimized');
                    }    
                    
                    localStorage.isResponsive = 'false';
                }
                
                var showMobileOptimized = function(){
                    localStorage.isResponsive = 'true';
                    viewport.attr('content', 'width=' + deviceWidth);
                }
                
                // if the user previously chose to view full site, change the viewport
                if(Modernizr.localstorage){
                    if(localStorage.isResponsive == 'false'){
                        showFullSite();
                    }
                }    
                
                $("#view-full").on("click", function(){
                    showFullSite();
                });
                
                $('#view-options').on("click", "#view-responsive", function(){
                    showMobileOptimized();
                });