Jordan, UAE strengthen economic, investment ties — JBA

Chairman of Jordanian Businessmen Association Ayman Alawneh, and Hamad Al Matrooshi, Chargé d'Affairesat the UAE Embassy in Jordan, on Wednesday discuss prospects for economic and investment cooperation
(Photos Courtesy of Jordan Businessmen Association )
Chairman of Jordanian Businessmen Association Ayman Alawneh, and Hamad Al Matrooshi, Chargé d'Affairesat the UAE Embassy in Jordan, on Wednesday discuss prospects for economic and investment cooperation (Photos Courtesy of Jordan Businessmen Association )

Chairman of Jordanian Businessmen Association Ayman Alawneh, and Hamad Al Matrooshi, Chargé d'Affairesat the UAE Embassy in Jordan, on Wednesday discuss prospects for economic and investment cooperation
(Photos Courtesy of Jordan Businessmen Association )

AMMAN — Chairman of Jordanian Businessmen Association (JBA) Ayman Alawneh, and Hamad Al Matrooshi, Chargé d'Affairesat the UAE Embassy in Jordan, on Wednesday discussed prospects for economic, investment and trade cooperation between the two countries.

According to a JBA statement, Alawneh stressed that Jordanian-Emirati relations represent a "deep-rooted" model of strategic Arab ties based on mutual cooperation, genuine brotherhood, trust, mutual respect and a shared developmental vision.

He noted that the UAE is one of Jordan's prominent economic partners and among the largest investors in the Kingdom, contributing to economic growth, sustainable development and job creation, the Jordan News Agency, Petra, reported.

During the meeting, which was attended by business leaders from both nations, Alawneh pointed out that Jordan is a key strategic partner for the UAE, given the robust economic ties between the two countries, adding that comprehensive economic partnership agreements contribute to boosting trade exchange and increasing mutual investments.

Alawneh said that Emirati investments in Jordan span vital sectors, most notably energy, real estate, tourism and infrastructure.

He underscored the importance of intensifying efforts to increase trade volume and enhance communication between the two business communities through the exchange of trade delegations and participation in economic exhibitions and conferences to support economic growth.

For his part, Al Matrooshi affirmed the UAE's commitment to strengthening economic relations with Jordan and expanding trade and investment cooperation, highlighting the vital role of the private sector in both countries in driving economic development and promoting strategic partnerships.

He noted that Emirati-Jordanian relations are witnessing continuous development across various fields, supported by the leaderships of both countries.

Al Matrooshi also emphasised the importance of building on available investment opportunities and intensifying communication between business communities to achieve mutual interests and support sustainable economic growth, Petra reported.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });