1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<html> <head> <script> function boom() { var MATHML_NS = "http://www.w3.org/1998/Math/MathML"; var mtr = document.createElementNS(MATHML_NS, 'mtr'); var mtable = document.createElementNS(MATHML_NS, 'mtable'); document.body.appendChild(mtr); mtr.appendChild(mtable); } </script> </head> <body onload="boom()"> </body> </html>