As a result of the 2020 covid-19 pandemic, all our charity events have been put on hold until it is safe for them to return. If you would like to register your interest in attending future dinners, you can do so by signing up below.
Time is TBD
Hilton Glasgow Grosvenor, 1-9 Grosvenor Terrace, Glasgow G12 0TA, UK
<script>
// social sharing helpers
function shareToFacebook(btn, link) {
btn.setAttribute('target', '_blank');
btn.setAttribute(
'href',
`https://www.facebook.com/sharer/sharer.php?u=${link}`
);
}
function shareToTwitter(btn, link) {
btn.setAttribute('target', '_blank');
btn.setAttribute(
'href',
`https://twitter.com/share?url=${link}`
);
}
function shareToLinkedIn(btn, link) {
btn.setAttribute('target', '_blank');
btn.setAttribute(
'href',
`https://www.linkedin.com/sharing/share-offsite/?url=${link}`
);
}
function socialShare(platform, btn, link) {
if (platform === 'facebook') {
shareToFacebook(btn, link);
} else if (platform === 'twitter') {
shareToTwitter(btn, link);
} else if (platform === 'linkedin') {
shareToLinkedIn(btn, link);
}
}
// social sharing
const btns = {
'linkedin': document.querySelector('[data-social="linkedin"]'),
'twitter': document.querySelector('[data-social="twitter"]')
}
const link = window.location.href;
for (let key in btns) {
if (btns.hasOwnProperty(key)) {
socialShare(key, btns[key], link);
}
}
</script>