Skip to content

Instantly share code, notes, and snippets.

@merqlove
Last active September 29, 2015 11:26
Show Gist options
  • Save merqlove/41958f95b436a7de3666 to your computer and use it in GitHub Desktop.
Save merqlove/41958f95b436a7de3666 to your computer and use it in GitHub Desktop.
Sberbank Address Book Cleanup
var sber_nodes = document.getElementById('otherCntct').childNodes;
Array.prototype.map.call(sber_nodes, function(node){return (node.className == 'relative' ? node.id.replace('el', '') : null); })
.filter(function(node){ return node != undefined })
.forEach(function(id){ contactListManager.deleteContact(id); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment