Skip to content

Instantly share code, notes, and snippets.

@yitsushi
Created October 27, 2017 17:08
Show Gist options
  • Save yitsushi/a564f9d4b64b15d1e3a84b41b52118f5 to your computer and use it in GitHub Desktop.
Save yitsushi/a564f9d4b64b15d1e3a84b41b52118f5 to your computer and use it in GitHub Desktop.
steam bulk wishlist
# Select them
jQuery('.wishlistRow').on('click', function() { jQuery(this).toggleClass('wanttoremove'); });
# Finish
jQuery('.wanttoremove').each(function() {
var id = this.getAttribute('id').split('_')[1];
jQuery.post(
'/id/yitsushi/wishlist/',
{
appid: id,
action: 'remove',
sessionid: g_sessionID
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment