Location
Montreal, Quebec, Canada
Posted
March 23, 2026
Job Description
Req Id: 429041
At Virgin Plus, we don’t have “customers”, we have Members. And Members get access to exclusive music events, VIP treatment, and killer music, entertainment, fashion and travel deals from the world’s must-have brands.
If you think you’ve got what it takes to make Virgin Plus life even sweeter, then read on, my friend, because we want you on our team!
Get personal with Virgin Plus Canada on Facebook and X (formerly Twitter).
{
navMenu.classList.toggle('active');
const icon = mobileMenuBtn.querySelector('.fa-icon');
if (navMenu.classList.contains('active')) {
icon.className = 'fa-icon fa-times';
} else {
icon.className = 'fa-icon fa-bars';
}
});
}
// Close mobile menu when clicking on a link
const navLinks = document.querySelectorAll('.nav-menu a');
navLinks.forEach(link => {
link.addEventListener('click', () => {
navMenu.classList.remove('active');
if (mobileMenuBtn) {
mobileMenuBtn.querySelector('.fa-icon').className = 'fa-icon fa-bars';
}
});
});