Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save codeanpeace/0d39fcbfe21ff890b344a8d66b48b18a to your computer and use it in GitHub Desktop.
Save codeanpeace/0d39fcbfe21ff890b344a8d66b48b18a to your computer and use it in GitHub Desktop.
turn down the dang volume of embedded soundcloud iframes
//load soundcloud js api if needed
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://w.soundcloud.com/player/api.js';
document.head.appendChild(script);
//get the id of the player iframe or inject it using chrome
// var id = 'scplayer',
// widgetIframe = document.getElementById(id),
// updated for kosmi.io where iframe has no id or class
var widgetIframe = document.getElementsByTagName('iframe')[0],
fixWidget = SC.Widget(widgetIframe);
fixWidget.setVolume(50); //% between 1 and 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment