ADVERTISEMENT

Taiwan's president meets Hawaii's governor and members of Congress in a visit condemned by China

Published Dec 2, 2024 12:17 am

HONOLULU (AP) — On a two-day visit to Hawaii, Taiwan’s president Lai Ching-te met with the state's governor and congressional representatives as part of a Pacific island tour that has already triggered criticism from Beijing.

AP24335761174456.jpg

Taiwan President Lai Ching-te, center, arrives at the Bishop Museum on Saturday, Nov. 30, 2024 in Honolulu. (AP Photo/Marco Garcia)

 

On Sunday, China’s Foreign Ministry said it “strongly condemned” U.S. support for Lai’s visit and had lodged a complaint with the U.S. It also denounced a newly announced U.S. weapons sale to Taiwan, a self-governing island that China claims as its own territory.

“China will closely monitor the situation’s development, and take resolute and forceful measures to safeguard the country’s sovereignty and territorial integrity,” said the statement.

Hawaii was Lai's first stop on a weeklong voyage that will later take him to the Marshall Islands, Tuvalu and Palau. They account for three of the 12 countries Taipei has formal diplomatic relations with.

Hawaii's Gov. Josh Green on Saturday hosted Lai at the state's emergency management agency where they discussed disaster preparedness. Green, who was a longtime emergency room physician before becoming governor, posted on social media that he and Lai discussed how their experiences in health care informed their governance. Lai is also a physician by training and obtained a Master of Public Health degree from Harvard University.

“Together, we extended a warm aloha to Lai and his delegation, highlighting Hawai'i’s shared values of resilience and collaboration with Taiwan,” Green said in an Instagram post.

Lai also visited Bishop Museum, Hawaii’s leading museum of natural history and Native Hawaiian culture.

In the evening, Lai posed for photos with Hawaii congressional representatives and state lawmakers at a dinner banquet with the Taiwanese American community.

U.S. Rep. Ed Case, a Democrat who represents Honolulu in Congress, said on social media that he told the audience that “our ties endured on shared values and interests to advance mutual goals and meet shared challenges.”

It is unclear whether Lai with meet with any senior officials from the Biden administration or anyone from the incoming Trump administration during his Hawaii stay.

President-elect Donald Trump said in an interview with Bloomberg in July that Taiwan should pay for its defense. The island has purchased billions of dollars of defense weaponry from the U.S.

Trump evaded answering whether he would defend the island from Chinese military action.

The new arms announced by the U.S. State Department Friday include $385 million in spare parts and equipment for a fleet of F-16s, as well as support for tactical communication system to Taiwan.

The U.S. is obligated to help the island defend itself under the Taiwan Relations Act but maintains a position of strategic ambiguity over whether it would ever get involved if Taiwan were to be invaded by China.

Former Taiwanese President Tsai Ing-wen drew vocal opposition from China when she stopped in New York last year on her way to Latin America. Tsai met with former House Speaker Kevin McCarthy at the time.

The Chinese military also launched drills around Taiwan last year as a “stern warning” over what it called collusion between “separatists and foreign forces” days after Lai, then Taiwan’s vice president, stopped over in the U.S.

China also strongly objects to leading American politicians visiting the island as it views any official contact with foreign governments and Taiwan as an infringement on its claims of sovereignty over Taiwan. Washington switched its formal recognition from Taipei to Beijing in 1979.

Related Tags

WORLDNEWS
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.