At 1.3 ounces, your pet will hardly notice the UltraElite Receiver - unless he moves into a restricted zone. We designed the UltraElite with your pet's day-to-day comfort and safety in mind.
Our smallest, lightest collar is completely rechargeable and never needs batteries. It features an optional nightlight mode for monitoring your pet's location.
Not just for outdoor containment, our technology can easily keep Kitty off the kitchen counter, or Rex out of the baby's room. Choose wireless or custom-wired.
// 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();
});