Skip to content

Instantly share code, notes, and snippets.

@astrochili
Last active June 27, 2017 22:15
Show Gist options
  • Select an option

  • Save astrochili/160e6953da52ac3dbf66f03260861995 to your computer and use it in GitHub Desktop.

Select an option

Save astrochili/160e6953da52ac3dbf66f03260861995 to your computer and use it in GitHub Desktop.
Works on mobile version (https://m.vk.com/audio). 28 June 2017.
// 1. Open https://m.vk.com/audio
// 2. Scroll music page to the end
// 3. Open develop console
// 4. Run this code to connect jquery
var script = document.createElement("script");
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", script.type="text/javascript", document.getElementsByTagName("head")[0].appendChild(script);
// 5. Run this code for deleting
$(document).find('.audio_item').each(function() {
var data_id = $(this).attr('data-id')
audioplayer.del(data_id, event);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment