How to add a downloadable MP3?

Anybody know the best way to create a button that will automatically download an MP3 when clicked?

I’m familiar with Javascript/JQuery and hosting.including audio files in a piece of code - but not sure how to do this

Any help would be appreciated, thank you!

Webflow doesn’t let you upload MP3s to your assets as far as I know.

You would need to host the MP3 somewhere else publicly and then you could copy the public url for the MP3 and add the query string ?dl=1 to the end of the URL (example: yourfileurl.com/?dl=1)

Then take that combined url and add it as an external link to the button.

Clicking the button should trigger a download now.