Firefox Tomorrow

web api instance method

Sanitizer: setDataAttributes() method

View on MDN ↗

The setDataAttributes() method of the Sanitizer interface sets whether all data-* attributes will be allowed by the sanitizer, or if they must be individually specified.

If this is set true, then data attributes are automatically allowed and you should not add them individually using allowAttribute() (or allowElement() for local attributes).

Note that this method is useful for allow configurations which have a lot of data-* attributes that you want to allow. The method returns false when used with remove configurations, which can allow all data-* attributes simply by omitting them.

Syntax

setDataAttributes(allow);

Parameters

  • allow
    • : true if all data-* attributes are allowed, and false if they must be explicitly specified.

Return value

true if the operation changed the configuration, and false if the configuration already set dataAttributes to the specified value or dataAttributes cannot be set true because this sanitizer has a remove configuration.

Examples

Basic usage

The code below shows the basic usage of the setDataAttributes() method.

// Create sanitizer (in this case the default)
const sanitizer = new Sanitizer();

// Allow all data-* attributes
sanitizer.setDataAttributes(true);

// data-* attributes are allowed by adding them
// to the attributes array
sanitizer.setDataAttributes(false);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.