Reputation: 21
Linking to the song with a Spotify URI ie (href="spotify:track:5hOvK49BB8MKmMm5zM1mJD"
) causes the track to play when all I want is to go to the album page and show the track highlighted. I've implemented an event.preventDefault();
as suggested here, but I'm not sure of what the handler should look like to go to the track page.
Upvotes: 2
Views: 82
Reputation: 18776
There's no such thing as a track page — as you see, you actually get to the album page.
To get the behaviour you want, get the track's album and link to that instead.
Upvotes: 0