Answered
Need to delete all child bookmarks
Hi, please, i need to delete all child bookmarks, can you share a working javascript script that can do that please?

thanks
Hi, please, i need to delete all child bookmarks, can you share a working javascript script that can do that please?

thanks
You can use this code to do it:
if (this.bookmarkRoot.children!=null) {
for (var i=0; i<this.bookmarkRoot.children.length; i++) {
var bkm = this.bookmarkRoot.children[i];
if (bkm.children!=null) {
for (var j=bkm.children.length-1; j>=0; j--) {
bkm.children[j].remove();
}
}
}
}Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.