Skip to content

Delete multiple connections in LinkedIn

  1. Use Google Chrome
  2. Go to page My network » Connections
  3. Select checkboxes for people to delete
  4. Open Console (or press F12)
  5. Run code:
js
JSON.stringify($('#list-panel input:checked').parents('li').map(function(){ return this.id; }).toArray());
  1. Copy generated code ( ["xxxxxxx","yyyyyyyyy","zzzzzzzz"] )
  2. Go to page Remove Connections
  3. In console paste generated code:
js
var ids = ["xxxxxxx","yyyyyyyyy","zzzzzzzz"];
  1. Run code:
js
$('#pickside input').each(function(){ ($.inArray(this.value, ids) !== -1) && $(this).trigger('click'); });
  1. Click button Remove connections