Open In App

HTML5 MathML <maction> tag

The HTML5 MathML <maction> tag is an inbuilt element of HTML5, that is used to show the bind action of any expression. You can use any selection attribute with this element.

Syntax:  



<maction> child elements </maction> 

Attributes: The <maction> tag accepts below-mentioned attributes: 

Below example will illustrates the concept of HTML5 MathML <maction> tag



Example:  




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML5 maction tag</title>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
        <h3>HTML5 maction tag</h3>
        <math>
            <maction actiontype="toggle">
                <mfrac>
                    <mn>25</mn>
                    <mn>10</mn>
                </mfrac>
                <mfrac>
                    <mrow>
                        <mn>5</mn>
                        <mo>⋅</mo>
                        <mn>5</mn>
                    </mrow>
                    <mrow>
                        <mn>2</mn>
                        <mo>⋅</mo>
                        <mn>5</mn>
                    </mrow>
                </mfrac>
                <mfrac>
                    <mn>5</mn>
                    <mn>2</mn>
                </mfrac>
            </maction>
        </math>
 
        <p>Click the number</p>
 
    </center>
</body>
 
</html>

Output: 

Supported Browsers: The browsers are supported by HTML5 MathML <maction> tag are listed below: 

Note: (Till now no other browsers supported by MathML elements)


Article Tags :