Ultimate Weekend Retreat at Ableton's Headquarters
Time & Location
Nov 09, 2025, 4:00 PM – 11:00 PM
Pasadena, 36 W Colorado Blvd suite 300, Pasadena, CA 91105, USA
Share this event
bottom of page
import { session } from 'wix-storage';
$w.onReady(function () {
// Capture the "ref" parameter from the URL
const urlParams = new URLSearchParams(window.location.search);
const refCode = urlParams.get('ref');
// If the ref code is present, store it in session storage
if (refCode) {
session.setItem('affiliateId', refCode);
console.log("Affiliate ID stored:", refCode);
}
});