LAX Official Site | Search Flights, Arrivals, Departures & Connections (2024)

  • All
  • Domestic
  • International

LAX Official Site | Search Flights, Arrivals, Departures & Connections (5)

Flight Schedule

* These flights are operated by a partner airline.

Sorry!

Our flight schedule and real-time flight information provider is having technical difficulties. We apologize for the inconvenience. Please try later.


"); } }, { name: "City", title: "Destination", align: "center", type: "text", itemTemplate: function (val, item) { var formattedCity = ''; if (item.City == null) { return $("

") .append('Not Available'); } else { return $("

") .css("font-weight", "bold") .append(item.City); } }, }, { name: "Timestamp", title: "Sched. Departure", align: "center", type: "number", itemTemplate: function (val, item) { var $label = $("

").attr("id", "timeformat"); if (item.TimeWithFormat == null) { return $label.append('N/A'); } var timeFormat = moment(item.TimeWithFormat, 'MM/DD/YYYY hh:mm:ss a').format("DD MMM h:mm A"); //var dateFormat = moment(item.TimeWithFormat,'MM/DD/YYYY hh:mm:ss').format("DD MMM"); return $label.append(timeFormat).append("

"); } }, { name: "Remarks", title: "Status", align: "center", itemTemplate: function (val, item) { var delayed = 'delayed'; var cancelled = 'cancelled'; var firstPart,secondPart; if(val.indexOf(':') >=0){ var itemsArray = val.split(" ") firstPart = itemsArray[0]; secondPart= moment(itemsArray[1], 'hh:mm').format("h:mm A"); }else{ firstPart = val; secondPart=''; } if ((val.toLowerCase().indexOf(delayed) != -1) || (val.toLowerCase().indexOf(cancelled) != -1) ) { return $("

").attr("id", "divRemarks").attr('style', "color:red").append(firstPart).append(" ").append(secondPart).append("

"); } else { return $("

").attr("id", "divRemarks").attr('style', "color:green").append(firstPart).append(" ").append(secondPart).append("

"); } }, align: "center" }, ] }); var field = $("#sortingField").val(); $("#jsGrid").jsGrid("sort", "Flight"); $('#btnTextSearch').on('click', function (e) { GetSearchItems(); }); $('#imgClear').on('click', function (e) { ClearFilters(); }); $('#btnClearFilters').on('click', function (e) { ClearFilters(); }); $('#btnRefresh').on('click', function (e) { ClearFilters(); }); $('#ddlAirlines').on('change', function (e) { GetSearchItems(); }); var filter = new Object(); $('#ddlTerminal').on('change', function (e) { GetSearchItems(); }); $('#btnDeparture').on('click', function (e) { console.log("departure click"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } console.log("departures url:" + window.location.pathname + "?type=dep" + fn); window.location.href = window.location.pathname + "?type=dep" + fn; /*if (window.location.href.indexOf('?') > -1) { console.log("departur url:" + window.location.pathname + "?type=dep"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } window.location.href = window.location.href + "&type=dep" + fn; }*/ }); $('#btnArrival').on('click', function (e) { console.log("arrival click"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } console.log("arrival url:" + window.location.pathname + "?type=arr" + fn); window.location.href = window.location.pathname + "?type=arr" + fn; /*if (window.location.href.indexOf('?') > -1) { console.log("arrival url:" + window.location.pathname + "?type=arr"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } window.location.href = window.location.pathname + "?type=arr" + fn; }*/ }); $('#txtFlightDate').on('change', function (e) { if (window.location.href.indexOf('?') > -1) { var date = GetParameterValues('date'); var type = GetParameterValues('type'); if (date == '' || date == undefined) { window.location.href = window.location.href + "&date=" + $('#txtFlightDate').val(); } else { window.location.href = location.href.replace("date=" + date, "date=" + $('#txtFlightDate').val()); } } }); $('#txtFlightnbr').on('keypress', function (e) { if (e.keyCode == 13) { GetSearchItems(); } }); var selectedTerminal = getUrlParameter('terminal'); if (selectedTerminal != null || selectedTerminal != undefined || selectedTerminal != '') { selectedTerminal = selectedTerminal.toUpperCase().trim(); var selectedTerminalOptions = $('#ddlTerminal option').filter(function () { if (selectedTerminal.indexOf("TBIT") > -1 || selectedTerminal.indexOf("B") > -1) return this.value.toUpperCase().indexOf("TBIT") > -1; else return this.value.toUpperCase() === selectedTerminal || this.text.toUpperCase() === selectedTerminal; } ) if (selectedTerminalOptions != null || selectedTerminalOptions != undefined || selectedTerminalOptions != '') { selectedTerminalOptions.first().prop("selected", true); } else { console.log("Bad Terminal: " + selectedTerminal); } } var selectedAirline = getUrlParameter('airline'); if (selectedAirline != null || selectedAirline != undefined || selectedAirline != '') { selectedAirline = selectedAirline.toUpperCase().trim(); var selectedAirlineOptions = $('#ddlAirlines option').filter( function () { return this.value.toUpperCase() === selectedAirline || ( selectedAirline.length >= 3 && this.text.toUpperCase().startsWith(selectedAirline) === true ); } ) if (selectedAirlineOptions != null || selectedAirlineOptions != undefined || selectedAirlineOptions != '') { selectedAirlineOptions.first().prop("selected", true); } else { console.log("Bad Airline: " + selectedAirline); } } function getDateMMDDYYYY(fullDate) { var twoDigitMonth = ((fullDate.getMonth().toString().length) == 1) ? '0' + (fullDate.getMonth() + 1) : (fullDate.getMonth() + 1); var twoDigitDate = ((fullDate.getDate().toString().length) == 1) ? '0' + (fullDate.getDate()) : (fullDate.getDate()); date = twoDigitMonth + "/" + twoDigitDate + "/" + fullDate.getFullYear(); return date; } function GetParameterValues(param) { var url = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for (var i = 0; i < url.length; i++) { var urlparam = url[i].split('='); if (urlparam[0] == param) { return urlparam[1]; } } } }); function ClearFilters() { window.location.href = window.location.pathname + "?type=dep"; } function GetSearchItems() { var objSearch = new Object(); var airlineCode = $('#ddlAirlines').val(); if (airlineCode != '') { objSearch.AirlineCode = airlineCode; } var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { objSearch.Flight = txtSearchCode.toUpperCase(); } var terminal = $('#ddlTerminal').val(); if (terminal != '') { objSearch.Terminal = terminal; } var li = $('ul.uldomestic li').filter(function () { return $(this).attr('class') === 'active'; }); var flightType = li.attr('val'); if("US" == flightType){ objSearch.IsDomestic = 'True'; } else if ("Non-US" == flightType){ objSearch.IsDomestic = 'False'; } else { objSearch.IsDomestic = ''; } $("#jsGrid").jsGrid("loadData",objSearch ).done(function () { $('#divReload').show(); $('#preloader').hide(); }); $("#jsGrid").jsGrid("openPage", 1); } $(window).bind("load", function () { $('#divReload').hide(); $.get('/Flight/SearchResult',{'reqType':'dep','date':''}).done(function(responseText){ db = responseText; $('#apiurl').val(responseText[0].APIGeneratedurl); $("#flightDataBetwenDateTime").html("Data Between: " + responseText[0].TimeWithFormat + " - " + responseText[responseText.length - 1].TimeWithFormat); $("#lastUpdatedTime").html("Data Last Updated: " + responseText[0].FlightDataCreatedDt); $('#datasource').html("Datasource: " + responseText[0].FlightDataSource); GetSearchItems(); }) .fail(function (xhr, status, error) { console.log(xhr.responseText); $('#alertpopup').modal('show'); $('#preloader').hide(); }); }); function getUrlParameter(name) { name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); var regex = new RegExp("[\\?&]" + name + "=([^]*)"), results = regex.exec(location.search); return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); }

LAX Official Site | Search Flights, Arrivals, Departures & Connections (2024)

FAQs

How can I check flight departure and arrival? ›

If you have the flight number, FlightAware can provide information about expected departure and arrival times. If you don't have the flight number, the Flight Finder option can help locate the flight number (though you do need to know the aircraft's origin and destination airport).

Are flights on time at LAX? ›

Los Angeles International Airport (LAX)

General Arrival Delays: Arrival traffic is experiencing airborne delays of 15 minutes or less.

Can you get to departures from arrivals at LAX? ›

Depart from Arrivals

If you're not taking a rideshare service, ask your driver to drop you off down on Arrivals and just take the stairs, elevators, or escalators up one level for check-in and security.

What terminal is American Airlines at LAX arrivals? ›

American Airlines (Check in at Terminal 4 and 5 - International Arrivals at Terminal B)

How to check the arrival of a flight? ›

The PNR status of a flight can be checked on the airline's website through PNR code. Also you can Web Check-in or Inquire about flights. If you are planning for international Trip or Trip with in india from any destination, This Flight status will give You information Minute by Minute.

How do I check my flight itinerary? ›

If not, you can go to the airline website and find it under your trips (many airlines have a section, often called “manage booking” or “my trips” or something similar, where you can pull up your itinerary by inputting your name and confirmation number).

How early should I be for my flight at LAX? ›

Departures. Passengers should arrive at LAX two hours before a domestic flight departure and three hours before an international flight departure.

How many terminals are at LAX? ›

Los Angeles International Airport has more than 150 gates in nine passenger terminals arranged in the shape of the letter U or a horseshoe. On the landside of the airport, LAX Shuttle route A buses allow passengers to move between all terminals.

How much time do you need between flights at LAX? ›

As a general rule, 60 to 90 minutes should be enough for a transfer between domestic flights that doesn't require leaving security. Two hours is more reasonable for domestic transfers that require leaving security and rechecking, and three hours is a good idea if arriving from another country.

Where is the easiest place to get picked up at LAX? ›

Picked-up or Dropped-off by Family/Friends

Passengers can be dropped off at in the terminals on the upper level/departures area. Picking Up: Passengers may be picked up on the outer curb on the lower level/arrivals level outside of baggage claim.

Can you walk between terminals in LAX? ›

You can get between LAX terminals by riding the free landside terminal shuttle bus that runs in a clockwise loop, or by walking on the sidewalks (outside the secure area) or via the terminal connectors (inside the secure area).

Is there a place to wait for arrivals at LAX? ›

LAX has two Cell Phone Waiting Lots where motorists meeting arriving passengers can wait for free, up to two hours, until passengers are ready to be picked up in the Central Terminal Area.

What Airlines are in terminal 5 at LAX? ›

Terminal 5 is the new home for JetBlue and Spirit, as well some American Airlines flights and the bus to the American Eagle terminal.

Is LAX arrivals on top or bottom? ›

On the Lower/Arrivals Level, the shortcut leads directly to Terminals 5, 6, 7 and 8. On the Upper/Departures Level, the shortcut leads to Terminals 6, 7 and 8. Both let you exit the airport.

What Airlines are in terminal 2 at LAX? ›

Airlines at Terminal 2
  • Condor*
  • Norse*
  • Virgin Atlantic (Check-in at Terminal 2 - Arrivals at Terminal B)
  • West Jet (Security screening at T3; planes depart T2. T2 and T3 are connected and all areas are accessible between the two terminals)

How can I check my flight online? ›

Go to your respective airline's website. Select the Edit/Manage Booking option. Enter your PNR or Booking Reference number and email or last name. Hit the “Get Itinerary” button.

How do I track a flight? ›

One way to follow a flight is by checking the flight status on the website of the airline you are travelling with. Another way to track a flight is by using flight tracker apps. Flight following apps are available for Android, iPhone and iPad users.

How can I check to see if someone is on a flight? ›

The answer is no, airline staff are not permitted to divulge who is or isn't on a flight to members of the public. The most they can tell you, if you have the flight information, is the status of that particular flight, but they can't say who's on it. This is for security and privacy purposes.

How to track a flight on iPhone? ›

How to view flight status on an iPhone
  1. On the home screen of your iPhone, swipe right or down from the top to pull up the search screen. ...
  2. Type the airline and flight number into the search field. ...
  3. You can click on your flight under Flights for more detailed information, including a map of the route the flight will take.
Dec 26, 2019

Top Articles
Latest Posts
Article information

Author: Rev. Porsche Oberbrunner

Last Updated:

Views: 6130

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Rev. Porsche Oberbrunner

Birthday: 1994-06-25

Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

Phone: +128413562823324

Job: IT Strategist

Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.