CINXE.COM
Land Rover iGuide Online
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"> <head> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <title>Land Rover iGuide Online</title> <meta name="viewport" content="width=device-width, initial-scale=1"/> <link href="/static/styles/land-rover.css" rel="stylesheet" media="screen"/> <link href="/static/images/land-rover/favicon.ico" rel="shortcut icon" type="image/x-icon"/> <link href="/static/images/land-rover/favicon-152x152.png" rel="apple-touch-icon" sizes="152x152"/> <script> var vprUrl = "https:\/\/cognitran-vpr-prod.cognitran-cloud.com"; </script> <script src="https://www.recaptcha.net/recaptcha/api.js" async="" defer=""></script> </head> <body> <!-- Navigation --> <header class="header-nav" id="top"> <nav class="container-fluid"> <div class="flex-row row"> <div> <a href="/"> <img class="img-responsive brand-logo" src="/static/images/land-rover/land-rover.svg" alt=""/> </a> </div> <!-- Desktop buttons --> <a class="pull-left flip hidden-xs btn btn-info link" href="/">Model Select</a> </div> </nav> <!-- /.container --> </header> <div class="container"> <div class="dual-frame-carousel landrover-light"> <div class="content"> <div> <h1>Land Rover iGuide Online</h1> <p class="sub-heading">Please select your vehicle and model year below to access the owner information.</p> <a class="btn arrow-right" href="#start">Get Started</a> </div> </div> <div class="image"> <img src="/static/images/land-rover/landrover-header.png" alt=""/> </div> </div> </div> <div class="hidden-xs"> <div class="container"> <div class="row"> <div class="col-sm-12"> <p>iGuide contains the very latest information for your vehicle and covers all derivatives and optional equipment, some of which will not be fitted to your vehicle. iGuide Online is the new name for Digital Handbook.</p> </div> </div> </div> </div> <div class="landrover-light"> <div id="start" class="container half-padding"> <div class="row"> <div class="col-md-12"> <div id="title-box-wrapper" style="text-align: center"> <h2 id="enter-vin-title" class="text-center">PLEASE ENTER YOUR VIN</h2> </div> <div class="g-recaptcha" style="margin: 0 auto; width: fit-content; padding-bottom: 10px" data-callback="enableFindModelByVin" data-sitekey="6LcFUM4mAAAAANS_hHVWaZKSpj1pk0IWABMo5Qgl"></div> <div class="vin-manual-input"> <input class="vin-box" id="vin-box" type="text" maxlength="17"/> <button id="find-model-by-vin" class="btn chevron-right" disabled style="margin-top: 0" onclick="findByManuallyEnterVin()">Find</button> </div> <div> <p class="text-center" id="vin-market-content-info">The content displayed for the VIN will align to the market of the vehicle</p> </div> <div class="vpr-lookup"> <p class="vin-input" id="vpr-lookup"> <i class="vin-help-text">Alternatively, find your vehicle by uploading a picture of your VIN.</i> <i class="fa fa-camera fa-lg" id="vin-camera-trigger"></i> <i id="camera-spinner" class="fa fa-circle-o-notch fa-spin" style="display: none"></i> <input type="file" accept="image/*" id="vin-capture"/> </p> <p id="vin-communication-error" class="vin-input error" style="display: none;">VIN recognition not possible. There is a communication error with the VIN image processing service. Please select your vehicle and model year manually or try again later.</p> <p id="vin-error" class="vin-input error" style="display: none;">VIN not recognised in image. Please try another image or select your vehicle and model year manually.</p> <p id="vin-not-found" class="vin-input error" style="display: none;">VIN not found.</p> </div> </div> </div> </div> <div class="container half-padding"> <div class="row"> <div class="col-sm-12"> <h2 class="center-text">SELECT YOUR VEHICLE AND MODEL YEAR</h2> </div> </div> </div> <div class="container"> <!-- Portfolio Section --> <div class="row row-spaced flex-row"> <script> function onChange(selectBox) { var option = selectBox.options[selectBox.selectedIndex]; var year = option.value; var lineCode = $(option).attr('meta-linecode'); var titleBox = document.getElementById(lineCode); var loadingIcon = "<div id='loading-spinner' style='display: inline-block; margin-left: 7px;'><i style='font-size: 20px;' class='fa fa-circle-o-notch fa-spin'></i></div>"; titleBox.insertAdjacentHTML("afterend", loadingIcon); document.getElementById(lineCode).style.display = "inline-block"; disableSelects(); listDocuments(lineCode, year); } function disableSelects() { const selectItems = $("select"); selectItems.attr('disabled', true); } function listDocuments(modelCode, year) { $.ajaxSetup({cache: false}); $.get('/model/' + modelCode + '/years/' + year + '/index', listDocumentSuccess); } function listDocumentSuccess (documents) { var buttons = $('.year-buttons'); buttons.empty(); if (documents.length === 1) { window.location.href = documents[0].href; } else if (documents.length > 1) { $.each(documents, function () { $('<a/>', { 'class': 'btn clear-btn block-btn', 'type': 'button', 'text': this.text, href: this.href }).appendTo(buttons); }); $('#year-modal').modal({backdrop: 'static', keyboard: false}); } else { $('#year-modal .year-buttons').append($('#no-years-message').clone().removeClass('hide')); $('#year-modal').modal(); } } function findByManuallyEnterVin() { let enteredVin = document.getElementById("vin-box"); if (enteredVin.value !== null && enteredVin.value !== undefined && enteredVin.value !== "") { listDocumentsByVin(enteredVin.value); showSpinnerIconForVinLookup(); } else { $('#vin-not-found').show(); setTimeout(function() { $('#vin-not-found').hide(); }, 10000); } } function closeModal() { $('#year-modal').modal('hide'); $('#loading-spinner').remove(); $('#loading-spinner-vin').remove(); const selectItems = $("select"); selectItems.attr('disabled',false); selectItems.each(function () { $(this).prop('selectedIndex', 0); }); } (function () { window.onpageshow = function(event) { if (event.persisted) { closeModal(); } }; })(); function showSpinnerIconForVinLookup() { var titleBox = document.getElementById("enter-vin-title"); var loadingIcon = "<div id='loading-spinner-vin' style='display: inline-block; margin-left: 7px;'><i style='font-size: 20px;' class='fa fa-circle-o-notch fa-spin'></i></div>"; document.getElementById("find-model-by-vin").disabled = true; if(document.getElementById("loading-spinner-vin") == null) { titleBox.insertAdjacentHTML("afterend", loadingIcon); titleBox.style.display = "inline-block"; } } function enableFindModelByVin(){ $('#find-model-by-vin').prop('disabled', false); } </script> <div class="col-lg-3 col-md-4 col-sm-6 other-container"> <div class="other-models landrover-medium"> <h3>Cannot find the model you are looking for?</h3> <p>If you cannot find the model or the model year you are looking for then click the button below.</p> <a class="btn pull-right" href="https://topix.jlrext.com/topix">Go to TOPIx</a> </div> </div> </div> <!-- /.row --> </div> <!-- /.container --> </div> <!-- Footer --> <footer> <div> <div class="footer-section"> <div class="container half-padding"> <div class="row"> <div class="col-sm-12"> <div class="share-links-wrapper"> <ul class="share-links"> <li><a href="https://www.facebook.com/landrover.uk" rel="external, nofollow, noindex" class="share icon social-facebook" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a></li> <li><a href="https://twitter.com/landrover_uk" rel="external, nofollow, noindex" class="share icon social-twitter" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li> <li><a href="https://www.youtube.com/user/LandRoverUK" rel="external, nofollow, noindex" class="share icon social-youtube" target="_blank"><i class="fa fa-youtube" aria-hidden="true"></i></a></li> <li><a href="https://instagram.com/landrover_uk" rel="external, nofollow, noindex" class="share icon social-instagram" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a></li> </ul> </div> </div> </div> </div> </div> <div class="footer-section"> <div class="container"> <div class="row"> <div class="col-sm-8"> <p>© JAGUAR LAND ROVER LIMITED <span>2024</span></p> <p><span>Registered Office</span> Abbey Road, Whitley, Coventry CV3 4LF</p> <p><span>Registered in England No: 1672070</span></p> <p>The fuel consumption figures provided are as a result of official manufacturer's tests in accordance with EU legislation. A vehicle's actual fuel consumption may differ from that achieved in such tests and these figures are for comparative purposes only.</p> </div> <div class="col-sm-4"> <a class="pull-right" href="#top"> <div class="up"> <i class="fa fa-angle-up"></i> </div> </a> </div> </div> </div> </div> </div> </footer> <div id="year-modal" class="modal fade"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" onclick="closeModal();"><span aria-hidden="true">×</span><span class="sr-only">Close</span> </button> <h4 class="modal-title select-variant">Select your owner information</h4> </div> <div class="modal-body"> <div class="row"> <div class="col-md-12 col-sm-12 year-buttons"></div> </div> </div> <div class="modal-footer"> <button type="button" class="btn" onclick="closeModal();">Cancel</button> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div id="no-years-message" class="alert alert-warning hide">The VIN you have uploaded appears to relate to an older model not covered by the information on this site, please visit TOPIx (link) where you may find further information regarding your vehicle</div> <div> <script type="text/javascript" src="/static/thirdparty/jquery/dist/jquery.min.js"></script> <script type="text/javascript" src="/static/thirdparty/bootstrap/dist/js/bootstrap.min.js"></script> <script type="text/javascript" src="/static/thirdparty/underscore/underscore-min.js"></script> <script type="text/javascript" src="/static/scripts/displayfadingselectionheader.js"></script> <script type="text/javascript" src="/static/scripts/language.js"></script> <script type="text/javascript" src="/static/scripts/typeahead.js"></script> <script type="text/javascript" src="/static/scripts/global.js"></script> <script type="text/javascript" src="/static/scripts/vin-plate-recognition.js"></script> <div> <div id="language-modal" class="modal fade"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title">Select your language</h4> </div> <div class="modal-body"> <div class="row language-buttons"></div> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <!-- <script type="text/javascript" th:inline="javascript" th:src="@{/static/scripts/displayfadingselectionheader.js}"></script>--> <script type="text/javascript"> $(document).on('ready', function () { const contextpath = "/"; $.get(contextpath + 'i18n/locales', function (locales) { $('#language-modal .language-buttons').html(''); $.each(locales, function (index, locale) { $('#language-modal .language-buttons') .append('<div style="margin-bottom: 5px;" class="col-xs-12 col-sm-6 col-md-3"><button type="button" data-language="' + locale.localeName + '" class="btn clear-btn block-btn">' + locale.label + '</button></div>'); }); $('.language-buttons .btn').on('click', function () { var language = $(this).data('language'); submitForm(language); }); }); $('#language-modal').modal({keyboard: false, backdrop: 'static'}); }); </script> </div> <script type="text/javascript"> //<![CDATA[ var languageIntervalId, countryIntervalId; $('#language-modal').on('shown.bs.modal', function (e) { languageIntervalId = displayFadingList("language", ["\u062D\u062F\u062F \u0627\u0644\u0644\u063A\u0629","\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0412\u0430\u0448\u0438\u044F \u0435\u0437\u0438\u043A","Vyberte jazyk","V\u00E6lg Deres sprog","W\u00E4hlen Sie Ihre Sprache aus.","\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03C4\u03B7\u03BD \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1 \u03C3\u03B1\u03C2","Select your language","Select your language","Seleccionar idioma","Valige keel","Valitse kieli","S\u00E9lectionnez votre langue","S\u00E9lectionner votre langue","\u05D1\u05D7\u05E8 \u05D0\u05EA \u05D4\u05E9\u05E4\u05D4 \u05E9\u05DC\u05DA","Odaberite jezik","V\u00E1lasszon nyelvet","Selezionare la lingua","\u4F7F\u7528\u8A00\u8A9E\u3092\u9078\u629E\u3059\u308B","Pasirinkite kalb\u0105","Atlasiet savu valodu","Selecteer uw taal","Velg ditt spr\u00E5k.","Select your language (Wybierz j\u0119zyk)","Selecione o seu idioma","Selecionar seu idioma","Selecta\u0163i limba","\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0432\u0430\u0448 \u044F\u0437\u044B\u043A","Vyberte svoj jazyk","Izberite jezik","V\u00E4lj spr\u00E5k","Dilinizi se\u00E7in","\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u043C\u043E\u0432\u0443","\u9009\u62E9\u60A8\u7684\u8BED\u8A00","\u9078\u64C7\u8A9E\u8A00","\uC5B8\uC5B4 \uC120\uD0DD","Seleccioneu el vostre idioma"]); }); $('#country-modal').on('shown.bs.modal', function (e) { countryIntervalId = displayFadingList("country", ["\u062D\u062F\u062F \u0627\u0644\u0628\u0644\u062F \u0623\u0648 \u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0623\u0648 \u0627\u0644\u0645\u0642\u0627\u0637\u0639\u0629","\u0418\u0417\u0411\u041E\u0420 \u041D\u0410 \u0414\u042A\u0420\u0416\u0410\u0412\u0410, \u0420\u0415\u0413\u0418\u041E\u041D \u0418\u041B\u0418 \u041F\u0420\u041E\u0412\u0418\u041D\u0426\u0418\u042F","VYBERTE ST\u00C1T, REGION NEBO PROVINCII","V\u00C6LG LAND, REGION ELLER PROVINS","LAND, REGION ODER PROVINZ AUSW\u00C4HLEN","\u0395\u03A0\u0399\u039B\u039F\u0393\u0397 \u03A7\u03A9\u03A1\u0391\u03A3, \u03A0\u0395\u03A1\u0399\u039F\u03A7\u0397\u03A3 \u0389 \u03A0\u0395\u03A1\u0399\u03A6\u0395\u03A1\u0395\u0399\u0391\u03A3","SELECT COUNTRY, REGION OR PROVINCE","SELECT COUNTRY, REGION OR PROVINCE","SELECCIONE SU PA\u00CDS, REGI\u00D3N O PROVINCIA","VALI RIIK, PIIRKOND V\u00D5I PROVINTS","VALITSE MAA, ALUE TAI MAAKUNTA","S\u00C9LECTIONNER LE PAYS, LA R\u00C9GION OU LA PROVINCE","S\u00C9LECTIONNER LE PAYS, LA R\u00C9GION OU LA PROVINCE","\u05D1\u05D7\u05E8 \u05DE\u05D3\u05D9\u05E0\u05D4, \u05D0\u05D6\u05D5\u05E8 \u05D0\u05D5 \u05DE\u05D7\u05D5\u05D6","ODABERITE ZEMLJU, REGIJU ILI POKRAJINU","V\u00C1LASSZA KI AZ ORSZ\u00C1GOT, A R\u00C9GI\u00D3T VAGY A TARTOM\u00C1NYT","SELEZIONARE IL PAESE, LA REGIONE O LA PROVINCIA","\u56FD\u3001\u5730\u57DF\u307E\u305F\u306F\u770C\u3092\u9078\u629E\u3059\u308B","PASIRINKITE \u0160AL\u012E, REGION\u0104 AR PROVINCIJ\u0104","ATLASIET VALSTI, RE\u0122IONU VAI APGABALU","SELECTEER LAND, REGIO OF PROVINCIE","VELG LAND, REGION ELLER PROVINS.","WYBIERZ KRAJ LUB REGION","SELECIONE PA\u00CDS, REGI\u00C3O OU PROV\u00CDNCIA","SELECIONE O PA\u00CDS, REGI\u00C3O OU PROV\u00CDNCIA","SELECTA\u0162I \u0162ARA, REGIUNEA SAU PROVINCIA","\u0412\u042B\u0411\u0415\u0420\u0418\u0422\u0415 \u0421\u0422\u0420\u0410\u041D\u0423, \u0420\u0415\u0413\u0418\u041E\u041D \u0418\u041B\u0418 \u041E\u0411\u041B\u0410\u0421\u0422\u042C","VYBERTE KRAJINU, REGI\u00D3N ALEBO KRAJ","IZBERITE DR\u017DAVO, REGIJO ALI PROVINCO","V\u00C4LJ LAND, REGION ELLER DELSTAT","\u00DCLKE, B\u00D6LGE VEYA \u0130L SE\u00C7\u0130N","\u0412\u0418\u0411\u0415\u0420\u0406\u0422\u042C \u041A\u0420\u0410\u0407\u041D\u0423, \u0420\u0415\u0413\u0406\u041E\u041D \u0410\u0411\u041E \u041F\u0420\u041E\u0412\u0406\u041D\u0426\u0406\u042E","\u9009\u62E9\u56FD\u5BB6\u3001\u5730\u533A\u6216\u7701\u4EFD","\u9078\u64C7\u570B\u5BB6\u3001\u5730\u5340\u6216\u7701\u5206","\uAD6D\uAC00, \uC9C0\uC5ED \uB610\uB294 \uC2DC\/\uB3C4 \uC120\uD0DD","SELECCIONEU UN PA\u00CDS, REGI\u00D3 O PROV\u00CDNCIA"]); countryDialogOnLoad(); }); $('#language-modal').on('hide.bs.modal', function (e) { clearInterval(languageIntervalId); $('#language-modal .modal-title').html(''); }); $('#country-modal').on('hide.bs.modal', function (e) { clearInterval(countryIntervalId); $('#country-modal .modal-title').html(''); }); //]]> </script> </div> </body> </html>