Search for a flight V
Priority ParkingSitemapAccessibilityTerms & ConditionsPrivacy Noticecookies
(function(w,d,s,l,i)[];w[l].push('gtm.start':
new Date().getTime(),event:'gtm.js');var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
)(window,document,'script','dataLayer','GTM-KLSTCM');
//
//
//
//
var showCookieBarCookie = $.cookie("showCookieBarCookie");
if (showCookieBarCookie === undefined)
$('.cookie-bar').show();
else
$('.cookie-bar').hide();
Got it
function EmercencyRibbonViewModel()
var self = this;
self.ribbon = ko.observableArray();
;
var viewModel = new EmercencyRibbonViewModel();
ko.applyBindings(viewModel);
jQuery.ajax({
url: "/WebServices/EmergencyRibbons.asmx/GetEmergencyRibbon",
type: "GET",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
if (data.d != null) {
if (data.d.length > 0) {
startLoop(data.d);
var setRibbonCookieValue = $.cookie("ribbonCookie");
var showRibbonCookie = $.cookie("showRibbonCookie");
var length = data.d.length;
if (setRibbonCookieValue === undefined || showRibbonCookie == undefined)
$('.header-alert:not(.cookie-bar)').show();
StoreRibbonsInCookie(data.d);
$.cookie('showRibbonCookie', 'true', path: '/' );
else {
var setRibbonCookie = JSON.parse($.cookie("ribbonCookie"));
var setRibbonCookieLength = setRibbonCookie.length;
if (length != setRibbonCookieLength)
$('.header-alert:not(.cookie-bar)').show();
else
var hasChanged = false;
for (var y = 0; y 1)
setInterval(function ()
$(".header-alert--message").fadeOut(1000, function ()
currentAlertIndex = (currentAlertIndex < alerts.length - 1) ? currentAlertIndex + 1 : 0;
$(".header-alert--message a span").eq(0).text(alerts[currentAlertIndex].Message);
$(".header-alert--message a").eq(0).attr("href", alerts[currentAlertIndex].Link);
$(".header-alert--message").fadeIn(1000);
);
, 5000);
Site Search
Flight Status
Remove
function LoadHeaderFlightInformation()
var savedFlightNumber = $.cookie('userSavedFlight');
if (savedFlightNumber != null)
$('#ctl00_ctl13_divFlightheader ').show();
jQuery.ajax(
url: "/WebServices/FlightInformation.asmx/FlightArrivalsAndDepartures",
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: JSON.stringify( searchTerm: savedFlightNumber, exactflight: true ),
success: function(data)
if (data.d.length > 0)
var flight = data.d[0];
$('#ctl00_ctl13_divFlightInfo').show();
$('#ctl00_ctl13_flightNumber').text(flight.fltnmbr);
$('#ctl00_ctl13_imgAirline').empty();
$('#ctl00_ctl13_imgAirline').append(flight.imgPath);
$('#ctl00_ctl13_fromTo').text(flight.isArrival ? "From" : "To");
$('#ctl00_ctl13_location').text(flight.origdest);
$('#ctl00_ctl13_departingArriving').text(flight.isArrival ? "Arrive" : "Depart");
$('#ctl00_ctl13_schedTime').text(flight.schedtime);
$('#ctl00_ctl13_flightStatus').text(flight.message);
$('#ctl00_ctl13_flightStatus').addClass(flight.statusCssClass);
else
$('#ctl00_ctl13_divFlightheader ').hide();
$.removeCookie('userSavedFlight', path: '/' );
);
else
setTimeout(LoadHeaderFlightInformation, 60000);
LoadHeaderFlightInformation();
Search for a flight
V
View all departures
View all arrivals
jQuery(document).ready(function ()
$(".flight-search--field .suggestive").keydown(function(event)
if (event.keyCode == 13)
$('.flight-search--field .results a.ui-menu-item.ui-state-focus')[0].click();
);
jQuery(".suggestive").autocomplete(
minLength: 1,
source: function (request, response)
jQuery.ajax(
url: "/WebServices/FlightInformation.asmx/FlightArrivalsAndDepartures",
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: JSON.stringify( searchTerm: request.term, exactflight: false ),
success: function (data)
if (data.d.length > 0)
response(jQuery.map(data.d, function(item)
return
label: item.fltnmbr + " " + item.origdest,
fltnmbr: item.fltnmbr,
value: item.fltnmbr,
schedtime: item.schedtime,
origdest: item.origdest,
isArrival: item.isArrival,
imgPath: item.imgPath
;
));
else
var emptyResult = [1];
response(jQuery.map(emptyResult, function (item)
return
value: "0",
;
));
);
,
focus: function (event, ui) iPad)/))
var element = $('.flight-search--field .ui-state-focus');
window.location.href = $(element).attr('href');
,
open: function ()
jQuery(this).data("uiAutocomplete").menu.element.removeClass();
jQuery(this).data("uiAutocomplete").menu.element.addClass("results");
jQuery(this).data("uiAutocomplete").menu.element.removeAttr("style");
jQuery(".flight-search--field").append(jQuery(this).data("uiAutocomplete").menu.element);
FlightSearchDropdownHeightSet();
,
close: function ()
).data("ui-autocomplete")._renderItem = function (ul, item)
ul.addClass('results');
var returnString = "";
if (item.value != "0")
var term = this.term.split(' ').join(' else
item.value = "";
returnString = jQuery("Sorry, we can't find a flight with that information. Click here to search our site for '" + this.term + "'.");
return $(returnString).data("ui-autocomplete-item", item)
.appendTo(ul);
;
);
f
Airport Parking
Get Quote
$('#btnGetQuote').click(function ()
postForm(
'https://secure-booking.london-luton.co.uk/LutonBooking/Booking/SearchParking',
'entry-date': $('#entry-date').val(),
'entry-time': $('#entry-time').val(),
'leaving-date': $('#leaving-date').val(),
'leaving-time': $('#leaving-time').val(),
'start_date': $('#start_date').val(),
'start_time': $('#start_time').val(),
'end_date': $('#end_date').val(),
'end_time': $('#end_time').val(),
);
);
Executive Lounges
Fast Track
Parking your car at LLA
Our official on-site car parks can't be beaten.
Park Mark® Safer Parking certified
Car Park options to suit everyone
Priority Parking is the closest to the terminal
Pre-book online for up to 70% discount
Blue Badge spaces in all car parks
Open 24/7
Pre-book now
Hard-to-ignore travel deals
It’s always worth looking at our latest deals – there are some amazing discounts to be had on city weekends, beach breaks and all-inclusive holidays.
Show me deals
LLA’s destinations
For inspiration or information, take a look at our current destinations. You can view them as a map or as a list, get flight times, schedules, the low-down on each destination and links for booking.
See where we fly to and book a flight
<!--
Superb shopping
-->For holiday essentials, high fashion, and everything in between, we have a great selection of shops for you to explore, including our Duty Free section.
Take me shopping
Collect on Return
Got a question?
Search our Frequently Asked Questions to find out if it’s already been answered. If not, contact us, and we’ll be happy to help.
Find my question
Need Special Assistance?
We’re always here to offer Special Assistance to passengers who need it.
Tell me more
Need to hire a car?
If you need to hire a car from our approved suppliers at the airport or want to hire a car at your destination airport we can help you get a great deal. Book online now to compare and save.
get your free car hire quote here
Book flights
While you’re here, why not book online with us?
Let's go
Get inspiration
- To and from the airport
- Flying from LLA
- Flying to LLA
- Dropping off
- Picking up
- More
- Inside LLA
- Shopping
- Eating & Drinking
- Check in
- Security
- Departure lounge
- More
- Parking
- Book parking
- Directions
- In airport extras
- Aspire lounge
- Priority lane
- Special Assistance
//