91³Ô¹ÏÍø

Watch CBS News

Record travel expected Labor Day weekend despite Idalia impact

Planning a Labor Day getaway? Better hit the road soon — so are a lot of other people.

On Friday, roads will be busiest from 11 a.m. to 9 p.m., Robert Sinclair Jr., senior manager of public affairs for AAA Northeast, told CBS New York

Nationally, gas prices stood at an average $3.77 per gallon Friday morning, according to , down nearly 3 cents from last year.

Prices likely won't deter travelers, though. "No matter how expensive gas prices are, when people decide to go on vacation, they just budget in the price of gas," said AAA spokesperson Andrew Gross told CBS News' Kris Van Cleave. "They're gonna take that trip."

That's partly because there's still pent-up wanderlust from pandemic lockdowns — and also because people are still shunning public transportation, Sinclair said.

GasBuddy advises travelers should compare prices before filling up — and be especially wary when crossing state lines as they travel. The prices near those boundaries "often become much more volatile. Shopping around before crossing state lines can save motorists 25-30 cents per gallon in some situations."

Sinclair said gas prices, while cheaper than last year, are approaching the mark that drivers have said will make them curtail their trips. They won't necessarily be foregoing travel entirely, but might take shorter trips, he said. 

"We did a survey of AAA Northeast members, they tell us they're traveling 50 to 200 miles. I remember in years gone by, the average trip would be 500 to 1,000 miles, so I think that's the concession to these high gasoline prices we see," he told CBS New York.

Those taking to the skies for the holiday — more than 250,000 flights are scheduled through Tuesday, according to the Federal Aviation Administration — are increasingly headed abroad, with international bookings up 44%, according to AAA data. Demand for hotel rooms overseas is up more than 80%, Sinclair said, and overseas cruise bookings are up 40%.

Labor Day Holiday Weekend Travelers at Chicago's O'Hare Airport
Travelers arrive at O'Hare International Airport in Chicago on Sept. 1, 2023. According to AAA, Labor Day weekend air travel is up over last year, with domestic bookings climbing 4% and international bookings up 44%.  / Getty Images

Air travel for the weekend was proceeding smoothly, despite Hurricane Idalia's landfall in Florida and the storm's drenching Georgia and the Carolinas earlier this week. The TSA has screened more than 227 million passengers since Memorial Day, with another 14 million expected by Tuesday.

No cancellations were reported Friday at either Miami International Airport or Tampa International Airport and just two at Fort Lauderdale International Airport, . Miami and Fort Lauderdale had the most delays of any major metropolitan area in the U.S. on Thursday night, according to FlightAware, but only one flight had been canceled between the two airports at the time. The two Florida airports had 42 and 55 flights delayed as of Friday morning, respectively.

The Transportation Security Administration expected to screen 14.25 million passengers and crew between Friday and Wednesday, which officials said is an 11% increase over last year. The heaviest days for car travel are expected to be Thursday and Friday, , with heavy auto travel between 10 a.m. and 6 p.m. on Monday.

And once the holiday is over, travelers could see gas prices decline. 

"I do think that the trend will remain downward for the potentially the next few weeks, (vo) especially as we get into mid- and late September. That's when a combination of the transition back to cheaper winter gasoline and falling gasoline demand should pave the way for lower prices, and if things go well, if there are no surprises or curve balls, the national average could fall 35 to 50 cents a gallon by the end of the year," said Patrick DeHaan, fuel analyst with GasBuddy.

Still, Labor Day is the last chance of the summer for people to get away.

"We usually never travel on the holidays because of the crowds and the gas prices but we have a friend and just want to get out of the heat," one man told Van Cleave.

–Kris Van Cleave and Haley Ott contributed to this report.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=fd53910ecf4604072044ab7c46d9b028'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });