VIP LOGIN
SearchPRO
DJ WeaponsRemixes & EditsTrending WeaponsDJ Viral ChartID TrackerPopular TracklistsMashup PacksArchive FeedPRO
CollectionsYour CratesPRO
In The MixCreate TracklistPRO
SpotlightSubmit Your Music
Exclusive DealsPRO
AffiliatesPRO
Account

Swedish House Mafia – Ushuaïa Ibiza | Spain (2026) [Tracklist]

Swedish House Mafia – Ushuaïa Ibiza | Spain (2026) [Tracklist]
1
DJ Emile - The Bombshelter Speech
Acapella
2
Swedish House Mafia ft. Tinie Tempah - Miami 2 Ibiza
3
Steve Angello - Hooligans
4
Rui Da Silva ft. Cassandra Fox - Touch Me
Acapella
5
Swedish House Mafia - Greyhound
6
Opus III - It's A Fine Day
Acapella
7
Chicane - Offshore '97
8
Swedish House Mafia & NIKI & The Dove - Lioness
9
Axwell ft. Bonn - Whatever Turns You On
10
Swedish House Mafia - Wait So Long (Why Do I Have To)
11
Swedish House Mafia & Knife Party ft. ADL - Antidote (MPH Remix)
Unreleased
12
Underworld - Dark & Long (Harry Hayes Illegal Edit)
13
Fred again.. & Swedish House Mafia ft. Future - Turn On The Lights Again..
14
Swedish House Mafia - Ray Of Solar
15
Dimitri Vangelis & Wyman X Steve Angello - Payback
16
Axwell Λ Ingrosso ft. Kristoffer Fogelmark - More Than You Know
Acapella
17
Ivan Gough & Feenixpawl ft. Georgi Kay - In My Mind (Axwell Mix)
18
Booka Shade - Love Inc
19
Axwell Λ Ingrosso ft. Trevor Guthrie - Dreamer
Acapella
20
Empire Of The Sun - Walking On A Dream
Acapella
21
Michael Calfan - Resurrection (Axwell Re-Cut Club Version)
22
Basement Jaxx - Where's Your Head At? (Steve Angello Remix)
23
William Kiss - Like This
24
Axwell & Sebastian Ingrosso & Steve Angello & Laidback Luke ft. Deborah Cox - Leave The World Behind
25
Sebastian Ingrosso ft. Céline Dion - A New Day
26
Martin Garrix & Citadelle & Sebastian Ingrosso - Peace Of Flood
27
Steve Angello & Laidback Luke ft. Rowetta - Be
28
Steve Angello & Laidback Luke ft. Robin S - Show Me Love
Acapella
29
Steve Angello - Knas
30
Cloonee & Prospa - Free Your Mind (James Poole Edit)
31
deadmau5 - Strobe
32
Swedish House Mafia ft. John Martin - Save The World (NC Edit)
33
Green Velvet - Flash (Nicky Romero Remix)
34
Sebastian Ingrosso & Tommy Trash ft. John Martin - Reload (Vocal Mix)
35
Swedish House Mafia ft. Seinabo Sey - Don't Go Mad
36
Swedish House Mafia & Alicia Keys - Finally
37
Swedish House Mafia & The Weeknd - Moth To A Flame
38
M83 - Midnight City (Eric Prydz Private Remix)
39
The Temper Trap - Sweet Disposition
Acapella
40
Swedish House Mafia ft. John Martin - Don't You Worry Child
41
Modjo - Lady (Hear Me Tonight)
Acapella
42
Swedish House Mafia & Connie Constance - Heaven Takes You Home
43
Sebastian Ingrosso - Laktos
44
Sebastian Ingrosso & Alesso ft. Ryan Tedder - Calling (Lose My Mind)
45
Whitney Houston - I Wanna Dance with Somebody (Who Loves Me)
Acapella
46
Candi Staton - You Got The Love
Acapella
47
Swedish House Mafia ft. Pharrell Williams - One (Your Name)
48
Swedish House Mafia ft. Lykke Li - Happiness Is So Sad
Unreleased

Create your own tracklists, grow your fans, discover viral tracks and stock up your crates.

Join The Family 💜
or
Join The Family 💜

Discover 1000's of tracks, build crates & create your own tracklists.

' +'
' +'

Opening SoundCloud

One moment please...

'; // ------------------------------------------------------------------------- // OVERLAY — paint button + blocker on each SoundCloud iframe // ------------------------------------------------------------------------- function processEmbed(iframe){ if(iframe.dataset.sctProcessed)return; iframe.dataset.sctProcessed='true'; var parent=iframe.parentElement; if(!parent)return; if(!parent.style.position||parent.style.position==='static'){ parent.classList.add('sct-sc-parent'); } var h=parseInt(iframe.height)||166; var type=h>200?'visual':'mini'; // Click blocker so the SC widget itself can't be clicked var blocker=document.createElement('div'); blocker.className='sct-sc-blocker'; blocker.dataset.playerType=type; blocker.onclick=function(e){e.preventDefault();e.stopPropagation()}; parent.appendChild(blocker); // The actual orange button — clicks intercepted by delegation below var btn=document.createElement('div'); btn.className='sct-sc-button'; btn.dataset.playerType=type; btn.innerHTML=SC_ICON+'SoundCloud \u2192'; btn.title='Open in SoundCloud'; parent.appendChild(btn); } function findEmbeds(){ document.querySelectorAll('iframe[src*="soundcloud.com/player"]:not([data-sct-processed])').forEach(processEmbed); } function initOverlay(){ findEmbeds(); new MutationObserver(findEmbeds).observe(document.body,{childList:true,subtree:true}); } // ------------------------------------------------------------------------- // CLICK INTERCEPTION — route through /r/?u=... // ------------------------------------------------------------------------- // Widget API loader — singleton promise so repeat callers share the same load var widgetApiPromise=null; function loadWidgetApi(){ if(window.SC&&window.SC.Widget)return Promise.resolve(); if(widgetApiPromise)return widgetApiPromise; widgetApiPromise=new Promise(function(resolve,reject){ var s=document.createElement('script'); s.src='https://w.soundcloud.com/player/api.js'; s.onload=resolve; s.onerror=reject; document.head.appendChild(s); }); return widgetApiPromise; } // Extract the public SC track permalink from an iframe src function getPermalink(iframe){ return new Promise(function(resolve){ var m=iframe.src.match(/url=([^&]+)/); if(!m){resolve(null);return} var decoded=decodeURIComponent(m[1]); // Already a public permalink if(decoded.indexOf('soundcloud.com')>-1&&decoded.indexOf('api.soundcloud.com')===-1&&decoded.indexOf('w.soundcloud.com')===-1){ resolve(decoded);return; } // api.soundcloud.com/tracks/NNN → ask Widget API loadWidgetApi().then(function(){ try{ var w=SC.Widget(iframe); w.getCurrentSound(function(sound){ if(sound&&sound.permalink_url)resolve(sound.permalink_url); else resolve(null); }); }catch(e){resolve(null)} }).catch(function(){resolve(null)}); }); } function reset(btn){btn.innerHTML=SC_ICON+'SoundCloud \u2192';btn.classList.remove('loading')} // Write the branded splash into a freshly-opened tab. function paintTab(tab){ if(!tab)return; try{tab.document.open();tab.document.write(TAB_SPLASH);tab.document.close();}catch(e){} } // Event delegation at capture phase — fires BEFORE any button's own onclick function sctAffHandleClick(e){ var btn=e.target.closest('.sct-sc-button'); if(!btn)return; if(e._sctAffHandled)return; e._sctAffHandled=true; e.preventDefault(); e.stopPropagation(); if(e.stopImmediatePropagation)e.stopImmediatePropagation(); var parent=btn.closest('.sct-sc-parent'); if(!parent)parent=btn.parentElement; if(!parent){console.warn('[sct-aff] no parent for button',btn);return} var iframe=parent.querySelector('iframe[src*="soundcloud.com/player"]'); if(!iframe){console.warn('[sct-aff] no iframe under parent',parent);return} // Open the tab NOW, synchronously, while we still have the user gesture, // and immediately paint the branded loading splash into it. var newTab=window.open('','_blank'); paintTab(newTab); btn.classList.add('loading'); btn.innerHTML=SPIN+'Opening...'; getPermalink(iframe).then(function(url){ if(!url){ if(newTab)newTab.close(); btn.innerHTML=SC_ICON+'Error'; setTimeout(function(){reset(btn)},2000); return; } var target=BASE+'?u='+encodeURIComponent(url); if(newTab){ newTab.location.href=target; // redirect the already-open splash tab }else{ window.open(target,'_blank'); // fallback if popup was blocked anyway } btn.innerHTML=TICK+'Opened!'; btn.classList.remove('loading'); setTimeout(function(){reset(btn)},1000); }); } // Bind on BOTH capture and bubble. _sctAffHandled prevents double-execution. document.addEventListener('click',sctAffHandleClick,true); // capture phase document.addEventListener('click',sctAffHandleClick,false); // bubble phase // ------------------------------------------------------------------------- // BOOT // ------------------------------------------------------------------------- if(document.readyState==='loading'){ document.addEventListener('DOMContentLoaded',initOverlay); }else{ initOverlay(); } })();

Save to crate

OR