Path: blob/main/files/en-us/web/mathml/element/maction/index.md
6532 views
------{{MathMLRef}}{{Deprecated_Header}}
The <maction> MathML element allows to bind actions to mathematical expressions. By default, only the first child is rendered but some browsers may take into account actiontype and selection attributes to implement custom behaviors.
Note: Historically, this element provided a mechanism to make MathML formulas interactive. Nowadays, it is recommended to rely on JavaScript and other Web technologies to implement this use case.
Attributes
This element's attributes include the global MathML attributes as well as the following attributes:
actiontype{{Deprecated_Inline}} {{Non-standard_Inline}}: The action which specifies what happens for this element. Special behavior for the following values were implemented by some browsers:
statusline: If there is a click on the expression or the reader moves the pointer over it, the message is sent to the browser's status line. The syntax is:<maction actiontype="statusline"> expression message </maction>.toggle: When there is a click on the subexpression, the rendering alternates the display of selected subexpressions. Therefore each click increments theselectionvalue. The syntax is:<maction actiontype="toggle" selection="positive-integer" > expression1 expression2 expressionN </maction>.
selection{{Deprecated_Inline}} {{Non-standard_Inline}}: The child element currently visible, only taken into account for
actiontype="toggle"or non-standardactiontypevalues. The default value is1, which is the first child element.
Examples
The following example uses the "toggle" actiontype:
{{ EmbedLiveSample('maction_example', 700, 200, "", "") }}
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}