We are thrilled to provide a success story from 60 Seconds app, our member. They have taken a big stride in their quest to connect with Arab markets by recently becoming a proud member of the Arab-British Chamber of Commerce and participating as a exhibitors and panelists in the 3rd Arab-British conference in London. Their AI-powered dynamic pricing solution is currently having a good effect on the Middle Eastern retail and real estate industries. Come celebrate with us this milestone and send 60seconds best wishes for more success on their global tour!
Related stories
Lord Ranger of Northwood, Chair of the British-Serbian Chamber of Commerce, has signed a Memorandum of Understanding with EXPO 2027 Belgrade
BSCC Christmas Dinner
UK-Western Balkans Building Futures Summit AGENDA
{
showCopyNotification('Link copied!');
}).catch(err => {
console.error('Failed to copy link:', err);
fallbackCopyTextToClipboard(articleUrl);
});
} else {
// Fallback for older browsers
fallbackCopyTextToClipboard(articleUrl);
}
}
/**
* Fallback method for copying text
*/
function fallbackCopyTextToClipboard(text) {
const textArea = document.createElement("textarea");
textArea.value = text;
// Avoid scrolling to bottom
textArea.style.top = "0";
textArea.style.left = "0";
textArea.style.position = "fixed";
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
try {
const successful = document.execCommand('copy');
if (successful) {
showCopyNotification('Link copied!');
} else {
console.error('Failed to copy link');
}
} catch (err) {
console.error('Fallback: Oops, unable to copy', err);
}
document.body.removeChild(textArea);
}
/**
* Show copy notification
*/
function showCopyNotification(message) {
// Remove existing notifications
const existingNotifications = document.querySelectorAll('.copy-notification');
existingNotifications.forEach(notification => notification.remove());
// Create notification element
const notification = document.createElement('div');
notification.className = 'copy-notification';
notification.textContent = message;
notification.style.cssText = `
position: fixed;
top: 20px;
right: 20px;
background: #28a745;
color: white;
padding: 12px 20px;
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
z-index: 1000;
font-size: 14px;
font-weight: 500;
opacity: 0;
transform: translateY(-20px);
transition: all 0.3s ease;
`;
document.body.appendChild(notification);
// Animate in
setTimeout(() => {
notification.style.opacity = '1';
notification.style.transform = 'translateY(0)';
}, 100);
// Remove after 3 seconds
setTimeout(() => {
notification.style.opacity = '0';
notification.style.transform = 'translateY(-20px)';
setTimeout(() => {
if (notification.parentNode) {
notification.parentNode.removeChild(notification);
}
}, 300);
}, 3000);
}
Top