Skip to content

Instantly share code, notes, and snippets.

@tonioriol
Last active August 29, 2015 14:03
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 tonioriol/105765e6d8b1de33184c to your computer and use it in GitHub Desktop.
Save tonioriol/105765e6d8b1de33184c to your computer and use it in GitHub Desktop.
Snippet of jQuery code to select the first 99 LinkedIn imported contacts for deleting them. Because LinkedIn don't provide any way to select multiple contacts.
$('.vcard input').each(function (i) {
if(i < 99) {
$(this).trigger('click');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment