Skip to content

Instantly share code, notes, and snippets.

@Axfan
Created June 11, 2015 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Axfan/6f8ce825182fcf70af8a to your computer and use it in GitHub Desktop.
Save Axfan/6f8ce825182fcf70af8a to your computer and use it in GitHub Desktop.
Clear the InstaSync playlist
var playlist_length = $("#playlist li").length;
var videosRemoved = 0;
setInterval(function() {
if (videosRemoved < playlist_length) {
$(".remove-video")[0].click();
videosRemoved++;
}
}, 250);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment