ProcessingInstruction: toggleAttribute() method

The toggleAttribute() method of the ProcessingInstruction interface toggles a boolean attribute on the given processing instruction, removing it if present and adding it if not present.

Syntax

js
toggleAttribute(name)
toggleAttribute(name, force)

Parameters

name

A string specifying the name of the attribute to be toggled.

force Optional

A boolean value that has the following effects:

Return value

true if the attribute is present after the toggleAttribute() operation completes, and false if not.

Exceptions

InvalidCharacterError DOMException

The specified attribute name contains one or more characters that are not valid in attribute names. The name must have at least one character, and may not contain ASCII whitespace, NULL, /, = or > (U+0000, U+002F, U+003D, or U+003E, respectively).

Examples

undefined

Basic usage

js
const pi = document.createProcessingInstruction("start", 'name=""');

pi.toggleAttribute("name");
pi.toggleAttribute("surname");
console.log(pi);
// logs:
// <?start surname=""?>

Specifications

See also