Jaguar XK XKR-S | AA (2024)

x

Jaguar XK XKR-S | AA (1)

The AA theaa.com FREE - In Google Play!

View

');$businessLinkMobileCount = $('.business-customer-mobile').length;if ($areYouBusinessCustomer.length && $businessLinkMobileCount == 0) {$mobileBusinessCustomerLink.html($areYouBusinessCustomer.html());$('.mobile-grey').append($mobileBusinessCustomerLink);}if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {// console.log("smaller than breakpoint");$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");$('#mainNavigation').addClass('mobile-main-nav').removeClass('desktop-main-nav');$('.mobile-grey').appendTo('.desktop-white');$('nav.aa-mega-menu').addClass('mobile-nav');if (!$('.scroller').length) {$('#site-header-yellow >.wrapper').wrap("

");}$('.mobile-tablet-menu').animate({ width: 'show' }, 30);$primaryHeadingCount = 0;$("#mainNavigation > ul > li.primary").each(function () {$primaryHeadingForMobile = $('

  • ');$firstColumnOfMegaMenu = $(this).find("nav > div > ul:nth-child(1)");$anchor = $($(this).children()[0]);anchorHtmlText = $anchor.html();$primaryHeadingForMobile.html(anchorHtmlText);var primaryNavCount = $(".primary.childrens").length;$primaryHeadingCount = $('.primary-heading').length;if ($primaryHeadingCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend($primaryHeadingForMobile);}$backLinkMobileCount = $('.backLink').length;if ($backLinkMobileCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend('

  • ');}});$('.main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {mobileCloseClick(e);$(".left.logo").focus();}});}else if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$('.left.logo').animate({ width: 'show' }, 30);$('.mobile-grey').appendTo('.top-header-links');$('nav.aa-mega-menu').removeClass('mobile-nav');$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('#mainNavigation').addClass('desktop-main-nav').removeClass('mobile-main-nav');$(".campaign-hero ").parents(':eq(2)').css('padding', '0')if ($('.scroller').length) {$('#site-header-yellow >.wrapper').unwrap("

    ");}$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);$('button > hr').css({"opacity": "0","visibility": "hidden"});$('.aa-mega-menu').css({"opacity": "0","visibility": "hidden"});$('.right.mobile-grey').show();$('#mainNavigation > ul.aa-main-nav > li.primary > button').keydown(function (e) {if (e.which === 13 || e.keyCode === 13) { /// for ENTER pressconst boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'true');});//remove active mega menu from HOVER if open if ($currentHoverMenuItem) {var $primaryNavigationListItem = $currentHoverMenuItem.parent();$currentHoverMenuItem.removeClass('menu-active').css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$currentHoverMenuItem = null;}applyMenuHoverInEffects($(this).parent());$('#mainContent').removeAttr("style");$('#mainContent').css({"opacity": "0.5","height": "calc(100% - 225px)","width": "100%","visibility": "visible","background-color": "#000","position": "absolute",// "top": "134px","left": "0px","z-index": "1"});$('#mainContent').addClass('menu-base-transition');$currentActiveMenuItem = $(this).parent().find('.aa-mega-menu');$currentActiveMenuItem.toggleClass("menu-active");// $('.column .sub-menu.col').animate({ width: 'show' }, 300);}else if (e.which === 9 || e.keyCode === 9) { // for TAB pressif ($currentActiveMenuItem) {e.preventDefault();var $firstAnchorOfMegaMenu = $($currentActiveMenuItem.find('div > ul:first-child > li:first-child > a')[0]);$firstAnchorOfMegaMenu.focus();}}});//get all last anchor items from all mega menus and attach key down event for Tab transer$("#mainNavigation > ul > li > nav > div > ul:last-child li:last-child a").keydown(function (e) {if (e.which === 9 || e.keyCode === 9) {console.log("tabbed...");$currentActiveMenuItem.removeClass('menu-active');var $nextPrimayNavItem = $currentActiveMenuItem.parent();if ($nextPrimayNavItem) {applyMenuHoverOutEffects($nextPrimayNavItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$nextPrimayNavItem.find('button')[0].focus();$currentActiveMenuItem = null;}else {//this will happen for very last anchor of last mega menu. there is no next menu item to focus to//so focus should be move to mainContent$('#mainContent').focus();}}});//for escape key- close the drop down menu if its open$('#mainNavigation > ul.aa-main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {if ($currentActiveMenuItem) {var $primaryNavListItem = $currentActiveMenuItem.parent()applyMenuHoverOutEffects($primaryNavListItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$primaryNavListItem.find('button')[0].focus();$currentActiveMenuItem = null;}const boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'false');});}});//when user mouse hovers from outside menu area then menu needs to animate with set transitions defined in css//but as sson as it enter menu are we need to remove animation transitions which are enabled. so differnt animation menu can be opened quickly$('#mainNavigation > ul.aa-main-nav').hover(function () {removeAnimation = true;}, function () {$('body').removeClass('notransition');removeAnimation = false;//this condition is added because after multiple ESC and TAB press somehow UL mouseout event was triggering and//it was causing background to set default yellow colorif ($currentActiveMenuItem == null) {$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');}});}if ($('#mainNavigation').hasClass('desktop-main-nav')) {$('.desktop-main-nav > ul.aa-main-nav > li.primary').hover(function () {// console.log("applying hover effects");$currentHoverMenuItem = $(this).find('.aa-mega-menu');//remove menu-active class from active mega menu from keyboard if open if ($currentActiveMenuItem) {var $primaryNavigationListItem = $currentActiveMenuItem.parent();$currentActiveMenuItem.removeClass('menu-active').removeAttr("style");var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});//If hover element and active keyboard element is not same then set active elment to null . giving preference to hoverif ($currentActiveMenuItem[0] != $currentHoverMenuItem[0])$currentActiveMenuItem = null;}applyMenuHoverInEffects(this);if (removeAnimation) {setTimeout(function () {$('body').addClass('notransition');}, 500);removeAnimation = false;}$('#mainContent').removeAttr("style");$('#mainContent').css({ "visibility": "visible" });$('#mainContent').addClass('menu-base-transition');}, function () {$currentHoverMenuItem = null;applyMenuHoverOutEffects(this);});}applyMenuHoverInEffects = function ($primaryNavElement) {// console.log("In applyMenuHoverInEffects");$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');$megaMenu.css({"opacity": "1","visibility": "visible"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "1","visibility": "visible"});//change header background with css transition class$('header#site-header-yellow').css('background', '#fff').addClass('bg-change');$('header#site-header-yellow').addClass('menu-base-transition');}applyMenuHoverOutEffects = function ($primaryNavElement) {$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$megaMenu.css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$('#mainContent').css({"visibility": "hidden",});}}$('header#site-header-yellow .main-nav ul.aa-main-nav > li').each(function () {if ($(this).find(".aa-mega-menu").length) {$(this).addClass('childrens')}});function mobileCloseClick(e) {// console.log("Mobille close called");e.preventDefault();$('body').removeClass("fixed-position");$('body').removeClass('mmenu-opened');$('header#site-header-yellow .main-nav').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active .scroller').animate({ right: '-100vw' }, 0);setTimeout(function () { $('#site-header-yellow').removeClass('mobilemenu-active') }, 0);$('.left.logo').animate({ width: 'show' }, 0);$('.mobile-tablet-menu').animate({ width: 'show' }, 0);$('.right.mobile-grey').show();$('#mainContent').removeAttr("style");const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'false');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'false');$('.main-nav').css('min-height', 'auto');if ($('.aa-mega-menu').hasClass('secondlevelOpen')) {$('.aa-mega-menu').stop().animate({ 'right': '-100vw' }, 0);primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');$('.aa-mega-menu').removeClass('secondlevelOpen');}$(".scroller").css("height", "100vh");$(".left.logo a").focus();$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 0);}$('.mobile-tablet-menu').click(function (e) {e.preventDefault();$('body').addClass("fixed-position");$(".mobile-grey a, .nav-logo a ").removeAttr("tabindex");$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('header#site-header-yellow .main-nav').animate({ right: '0' }, 300);$('.scroller').animate({ right: '0' }, 300);$('.left.logo').animate({ width: 'hide' }, 300);$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);if ($('.scroller').length) {$('#site-header-yellow').addClass('mobilemenu-active');}var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', 'auto');const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'true');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'true');$(".scroller").css("height", (Math.max(document.documentElement.clientHeight, window.innerHeight || 0) - $("#site-header-yellow").offset().top));$(".left.menu-logo a").focus();});$('.mobile-tablet-menu-open').click(function (e) {// changes for CD-50114 startmobileCloseClick(e);// changes for CD-50114 end});var primaryItem = $('li.primary.childrens > button');var backlink = $('li.backLink > button');if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {primaryItem.on('click', function (e) {console.log('primaryItem.on(click, function (e) ---');e.preventDefault();var megaHeight = $(this).next('.aa-mega-menu').height() + 120;$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '0' }, 300);$(this).parent('li').removeClass('hide-menu');$(this).addClass('hide-menu');$(this).parent('li').siblings('li').addClass('hide-menu').removeClass('activated');$(this).parent('li').addClass('activated');$(this).next('.aa-mega-menu').addClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', megaHeight);$('.main-nav').css('min-height', 'auto');$('.right.mobile-grey').hide();$('.column .sub-menu.col').animate({ width: 'show' }, 300);// $(".backLink button").focus();$(".left.menu-logo a").focus();});backlink.on('click', function (e) {e.stopPropagation();$(".secondlevelOpen").stop().animate({ width: 'hide' }, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').stop().animate({ right: '-100vw' }, 300);$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '-100vw' }, 300);setTimeout(function () {$('.right.mobile-grey').show();}, 300);$('.column .sub-menu.col').animate({ width: 'hide' }, 300);setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').removeClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', 'auto');var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', primaryHeight);});};window.aa.MenuSetupCompleted = true;}

    Skip to main content [Accesskey 'S'] Go to home page [Accesskey '1']Are you a business customer?

    • Broken down?
    • Route Planner
    • Help and support

    August 2013

    Shark-nose front end is unique to the XKR-S

    August 2013

    Jaguar XK XKR-S | AA (2)Jaguar XK XKR-S | AA (3)Jaguar XK XKR-S | AA (4)Jaguar XK XKR-S | AA (5)

    Overall rating

    Jaguar XK XKR-S | AA (6)

    Likes:

    • Engine is strong, characterful and sounds superb
    • Sharpened handling is better than ever
    • Ride quality remains acceptable
    • High standard of specification

    Gripes:

    • Aerodynamic tweaks may not appeal to all
    • Cabin starting to feel its age
    • High running costs
    • F-Type offers more for less money

    Despite the huge attention give to the brand-new F-Type, Jaguar remains a luxury sporting manufacturer that always offers a range of performance cars and since 2006 the main focus has been the XK. Jaguar has followed up the high power XKR with an even more extreme version dubbed the XKR-S.

    Despite now being the oldest car in the Jaguar range, the XK is a highly capable machine in any of its guises. The sophisticated aluminium construction and the impressive range of V8 engines puts the XK on a par with pricier opposition. The same applies to the high-performance XKR, which has supercharged power to make it the fastest car in the range.

    The XKR-S is the most extreme XK to date, and has a number of enhancements over the standard XKR. Although it uses the same supercharged V8 of the standard car, in the XKR-S it receives an increase in power and torque. To take full advantage of the extra power the speed limiter has been raised to 186mph, making it the fastest production Jaguar since the XJ220 supercar.

    With the extra potential for high speed, the XKR-S also benefits from aerodynamic tweaks such as a revised front splitter beneath the bumper and a larger rear spoiler, cutting lift at higher velocities. The suspension has also been substantially revised and the adaptive dynamics system has been reprogrammed to give the driver maximum fun with the security of a safety net.

    There are enhancements on the inside too, most significantly the adoption of standard sports seats with electric adjustment. Offering excellent comfort and the kind of support required for a car with this much performance they are a welcome addition. Unique alloy wheels are lighter than those fitted to the XKR with unique tyres too.

    Our verdict on the Jaguar XK XKR-S

    With the changes made the XKR-S moves the Jaguar into near-supercar territory, with terrific acceleration, handling and grip. The changes to the exhaust also it offers a lot more aural excitement, and there is much less of the refined GT car about it compared to the regular XKR. That makes it a very exciting proposition, albeit an expensive one.

    Costs

    There's no hiding the fact that the XKR-S will be an expensive car to run. Fuel, insurance and servicing costs are all in the executive performance bracket. Although the car's 5.0-litre V8 boasts modest consumption and emissions levels, if driven enthusiastically you will still be stopping frequently to fill up.

    Space and practicality

    The XKR-S is not a small car, yet its cabin is more snug than spacious. Two adults can sit in comfort without rubbing shoulders but the downside is only a modest level of oddment storage - a little frustrating if used for long journeys. The limited rear seat space is reduced still further by the big sports seats - they are only suitable for children big enough not to need a child seat. The car's boot is reasonable though, and can swallow a few soft bags with ease.

    Controls and display

    There's a mix of technology and the traditional inside the XKR-S, with the touchscreen system and the slightly old-fashioned dials. Some of switchgear is beginning to feel a little dated, although in truth it all works very well.

    Comfort

    The new sports seats offer superb support and comfort over long distances, and with everything turned down even exhaust noise is modest at motorway speeds. The ride is significantly firmer than the standard car and so bumps are felt more sharply, although only the worst imperfections cause any disruption in the cabin.

    Car security

    With a car like this it's important to feel secure. Jaguar provides a comprehensive security package including a cutting-edge alarm system and a keyless-go system. There is, however, no substitute for a safe garage and a tracking device.

    Car safety

    For all its performance potential, the XKR-S is no different to any other XK and comes with a high level of safety equipment. Airbags and electronic stability aids are in plentiful supply, while the bonnet can pop up in the event of a pedestrian impact to reduce injury.

    Driver appeal

    Anyone familiar with an XKR will recognise how the XKR-S drives, but the whole experience is cranked up several levels. The noise coming from the exhaust when the engine is revved hard is spectacular, along with the subsequent performance. On occasion the traction control system has to work hard to keep it in check, and yet when driven sedately the XKR-S can still be used every day.

    Family car appeal

    It would be wrong to be critical in this department because the XKR-S hasn't been designed to be a family car. The car's boot is a reasonable size, making the Jaguar versatile in the context of being the second car in the household.

    First car appeal

    While the XKR-S doesn't present any particular challenges when driven at modest speeds, its potential ensures that only an experienced driver will likely be able to confidently take the reins at higher speeds. And that's before you factor in the running costs - especially insurance.

    Quality and image

    Consistent improvements in Jaguar's quality standards means that the overall standard is relatively high, if not the best in class. The occasional piece of substandard plastic trim is visible in the cabin and some of the switchgear is a little outdated, however on balance the overall experience is a positive one. Furthermore, Jaguar as a brand benefits from a tremendous amount of goodwill from fans and buyers alike.

    Accessibility

    Being a coupe, this XKR affords front seat occupants easy access and egress. The rear seats, on the other hand, are little more than ornamental. The XK coupe is also a practical car in a conventional hatchback sense. Consequently, loading and unloading is easy.

    Stereo and ICE (In car entertainment)

    As well as refinement, Jaguar is also well known for its audio systems. Keen to offer buyers the best of everything, the standard fit unit should satisfy all but the most demanding audiophile. It's MP3 and Bluetooth compatible, and offers the ability to store music on a hard drive plus the ability to connect an iPod.

    Colours and trim

    For a large Jaguar coupe the XKR-S is available in some much brighter shades than you might expect, and because of the more aggressive appearance it suits such shades well. On the inside there is plenty of leather and so darker shades work best, picked out with some metal-coloured details.

    Parking

    Although the rear view out of the XKR-S isn't that special, the car's parking sensors make up for this in a surprisingly good way. You will have to be careful as the car's large alloy wheels are prone to damage.

    Spare wheel

    Tyre inflation kit fitted as standard.

    Range information

    Petrol engine options - 5.0-litre (380bhp, 503bhp and 542bhp). Transmission - six-speed automatic driving the rear wheels.

    Alternative cars

    Porsche 911 Carrera SNot quite as quick but more involving and less money

    Maserati Gran Turismo MCSharp-edged version is handsome and athletic

    BMW M6More refined and less focussed, but a little cheaper too

    Mercedes-Benz C63 AMG Black SeriesExtreme performance and handling, limited production run and expensive

    Over 1,300 car reviews online

    Search for the make and model you fancy

    Select make

    • Buy your used car from AA Cars
    • Car insurance – get a quote
    • Car loans from the AA
  • Jaguar XK XKR-S | AA (2024)

    References

    Top Articles
    Latest Posts
    Article information

    Author: Tuan Roob DDS

    Last Updated:

    Views: 5768

    Rating: 4.1 / 5 (62 voted)

    Reviews: 85% of readers found this page helpful

    Author information

    Name: Tuan Roob DDS

    Birthday: 1999-11-20

    Address: Suite 592 642 Pfannerstill Island, South Keila, LA 74970-3076

    Phone: +9617721773649

    Job: Marketing Producer

    Hobby: Skydiving, Flag Football, Knitting, Running, Lego building, Hunting, Juggling

    Introduction: My name is Tuan Roob DDS, I am a friendly, good, energetic, faithful, fantastic, gentle, enchanting person who loves writing and wants to share my knowledge and understanding with you.