Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trentrand/fb740efac8f3e8cd0bf4306b17c441df to your computer and use it in GitHub Desktop.
Save trentrand/fb740efac8f3e8cd0bf4306b17c441df to your computer and use it in GitHub Desktop.
Sanitize third-party media player controls
javascript:(function(){var d=document.createElement('script');d.src='http://code.jquery.com/jquery-latest.js';d.onload=function(){$(".media-control").remove();$("video").prop("controls",true)};document.getElementsByTagName('head')[0].appendChild(d)})()
(function(){
var d=document.createElement('script');
d.src = 'http://code.jquery.com/jquery-latest.js';
d.onload = function(){ /* load handler here */
$(".media-control").remove();
$("video").prop("controls", true);
};
document.getElementsByTagName('head')[0].appendChild(d);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment