Tutorials References Menu

HTML ontoggle Event Attribute

❮ HTML Event Attributes

Example

Execute a JavaScript when a <details> element is opened or closed:

<details ontoggle="myFunction()">
Try it Yourself »

Definition and Usage

The ontoggle attribute fires when the user opens or closes the <details> element.

The <details> element specifies additional details that the user can view or hide on demand.


Browser Support

The numbers in the table specify the first browser version that fully supports the event attribute.

Event Attribute
ontoggle 12.0  79.0 48.0  6.0 15.0

Syntax

<element ontoggle="script">

Attribute Values

Value Description
script The script to be run on ontoggle

Technical Details

Supported HTML tags: <details>

Related Pages

HTML DOM reference: ontoggle event


❮ HTML Event Attributes