Skip to content

Instantly share code, notes, and snippets.

@AElouai
Created December 26, 2016 10:10
Show Gist options
  • Save AElouai/ce6e7b4ff2116e38865e66b94b8203cc to your computer and use it in GitHub Desktop.
Save AElouai/ce6e7b4ff2116e38865e66b94b8203cc to your computer and use it in GitHub Desktop.
//load jquery first
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
//Select all invetations using script blow then click on cancle invetaion and it done :D
jQuery(function($){
$('.entityblock').each(function(index){
var this_card = $(this);
this_card.find('.entity-checkbox-label').click();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment