Some test text!

Search
Hamburger Icon

Web / Guides / Remove annotations

Remove PDF annotations using Javascript

Many users will remove or delete annotations using the WebViewer UI. The simplest way to do this with the WebViewer UI is to select the annotation and choose the delete/trash icon in the popup modal.

annotation popup

Programmatically

Annotations can also be deleted programmatically. You'll want to make sure that the annotations have already been loaded in the viewer.

For example to remove it immediately after the annotations are loaded then use the annotationsLoaded event:

WebViewer(...)
  .then(instance => {
    const { documentViewer, annotationManager } = instance.Core;

    documentViewer.addEventListener('annotationsLoaded', () => {
      const annots = annotationManager.getAnnotationsList();

      // remove annotations
      annotationManager.deleteAnnotations(annots);
    });
  });

Customize or modify a PDF before saving
Full sample code demonstrating how to customize document save/download. In the example, annotations are deleted for rerendering and flattened before saving.

Get the answers you need: Chat with us