Mobile mechanic near me | Car service at home (2024)

x

Mobile mechanic near me | Car service at home (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

    Car servicing that comes to you

    No need to drive – we can do a car service on your drive

    Why choose AA Mobile Mechanics?

    You can get a manufacturer, interim or full service at your home. Just enter your number plate and postcode to get started.1

    • Vehicle servicing on your doorstep
    • Fully trained AA mechanics
    • Equipped for any service and additional work
    • Fixed service prices for your car – and if any more work is needed, we'll ask you first

    The AA Mobile Mechanics service

    It’s so convenient. Our fully trained AA mechanics can come to you, at your home or on private property with the owner’s permission.
    Their AA yellow vans are equipped for the service of your choice.
    So when you ask is there a mobile mechanic near me, we're ready.
    Get a mobile car service:
      • The mechanic will check the condition of your car, including brakes and tyres.
      • They can spot any issues that might cause a problem, so you can get them fixed.
      • Looking after your car with regular servicing can improve it's resale value.

    Types of car service

    • Mobile mechanic near me | Car service at home (2)
      Manufacturer service

      The service recommended by your manufacturer, based on the age and mileage of your vehicle to keep it in the best possible condition. This service will maintain your vehicle's warranty.

    • Mobile mechanic near me | Car service at home (3)
      Interim service

      A comprehensive list of checks ranging from your wheels to your engine, and you'll also get an oil change.

    • Mobile mechanic near me | Car service at home (4)
      Full service

      Includes everything covered by an interim service, plus you'll also get added extras like a brand-new air filter.

    What's the difference between a full and interim service?

    When you book a service through Smart Care, the types of checks that are included vary depending on the type of service you book.

    Interim service Full service
    Driver visibility
    Check exterior lights

    Yes

    Yes

    Check window washers & wipers

    Yes

    Yes

    Check condition of the windscreen for cracks and chips

    Yes

    Yes

    Check condition of the number plates

    Yes

    Yes

    Check door, bonnet and lock operation

    Yes

    Yes

    Check mirrors

    Yes

    Yes

    Interior
    Check horn

    Yes

    Yes

    Check seat belts

    Yes

    Yes

    Pollen filter

    No

    Yes

    Check condition of the air conditioning

    No

    Yes

    Braking system
    Check condition of brake pads

    Yes

    Yes

    Check condition of brake discs

    Yes

    Yes

    Vehicles with rear drum brakes (additional charge for drum removal and brake clean)

    Yes

    Yes

    Check brake pipes and hoses

    Yes

    Yes

    Check brake callipers

    Yes

    Yes

    Engine bay operations
    Engine oil filter

    Yes

    Yes

    Engine oil

    Yes

    Yes

    Check engine bay condition and oil leaks

    Yes

    Yes

    Check radiator and coolant hoses for leaks

    Yes

    Yes

    Visual coolant condition check and top up

    Yes

    Yes

    Visual brake fluid condition check and top up

    Yes

    Yes

    Check auxiliary belt(s)

    Yes

    Yes

    Check timing/cam belt

    Yes

    Yes

    Check condition of spark plugs (additional charge if replacement required)

    Yes

    Yes

    Check washer fluid levels and top up as necessary

    Yes

    Yes

    Check power steering fluid levels and top up as necessary

    Yes

    Yes

    Check AdBlue levels (additional charge if top up required)

    Yes

    Yes

    Check clutch fluid levels and top up as necessary

    Yes

    Yes

    Air filter

    No

    Yes

    Under vehicle inspection
    Check condition of wheel bearings

    Yes

    Yes

    Check drive shaft gaiters

    Yes

    Yes

    Check exhaust system & components

    Yes

    Yes

    Remove road wheels to inspect

    No

    Yes

    Road test vehicle
    Check dashboard warning lights

    Yes

    Yes

    Check hand brake operation

    Yes

    Yes

    Check exhaust for smoke

    Yes

    Yes

    Check transmission and clutch operation

    Yes

    Yes

    Steering and suspension
    Check steering rack & steering rack components

    Yes

    Yes

    Check road springs

    Yes

    Yes

    Check shock absorbers

    Yes

    Yes

    Wheel and tyre
    Check and adjust tyre pressures

    Yes

    Yes

    Check tyre condition and tread depths

    Yes

    Yes

    How to book your mobile car service

    1

    Mobile mechanic near me | Car service at home (5)

    Enter your details

    Get started by entering your number plate and postcode, then add a service to your basket.

    2

    Mobile mechanic near me | Car service at home (6)

    Choose a date

    Pick a date you'd like us to visit. One of our experienced mobile mechanics will come straight to your location.

    3

    Mobile mechanic near me | Car service at home (7)

    We'll take it from here

    The mechanic will contact you when they're on their way, and tell you about the booked service schedule when they arrive.

    Car servicing advice

    Mobile mechanic near me | Car service at home (8)

    Complete guide to car servicing

    We answer your most common questions on car servicing.

    Read more

    Mobile mechanic near me | Car service at home (9)

    How often should I service my car?

    We explain how often you should book in for a full or interim service.

    Read more

    Mobile mechanic near me | Car service at home (10)

    Why should I get my car serviced?

    Discover why getting your car regularly serviced is so important.

    Read more

    Good to know

    1 AA Mobile Mechanics is only available for vehicle servicing and associated repairs in specific locations, and is subject to availability.

    • The service location must be a private driveway or private land, and the vehicle should be on a flat surface with good access all around. A service can't be done on a public road.

    • Once a mobile mechanic is sent to your location, if the service can't be done because the vehicle isn't available or the location isn't suitable we may charge you the full cost of the service.

    • The AA Mobile Mechanics service is not included as part of AA breakdown cover membership. If you are a member in a breakdown or accident please use the AA app, or you can get help online.

    • The AA Mobile Mechanics service comes with terms and conditions.

  • Mobile mechanic near me | Car service at home (2024)

    References

    Top Articles
    Latest Posts
    Article information

    Author: Carmelo Roob

    Last Updated:

    Views: 6366

    Rating: 4.4 / 5 (65 voted)

    Reviews: 80% of readers found this page helpful

    Author information

    Name: Carmelo Roob

    Birthday: 1995-01-09

    Address: Apt. 915 481 Sipes Cliff, New Gonzalobury, CO 80176

    Phone: +6773780339780

    Job: Sales Executive

    Hobby: Gaming, Jogging, Rugby, Video gaming, Handball, Ice skating, Web surfing

    Introduction: My name is Carmelo Roob, I am a modern, handsome, delightful, comfortable, attractive, vast, good person who loves writing and wants to share my knowledge and understanding with you.