Estoy desesperado intentando que se puedan visualizar correctamente fórmulas con la etiqueta <math> dentro de un iframe de un archivo.jsp, ¿alguna idea de como conseguir esto? Os paso mi código:
Formula.html:
Código HTML:
<html> <head> <title>Formulario en HTML</title> <link rel=stylesheet href="../style/test.css" type="text/css"> <script type="text/javascript"> function EscribirFormula(){ document.getElementById("ifr1").contentWindow.document.body.innerHTML += '<math xmlns="http://www.w3.org/1998/Math/MathML"><mstyle mathsize="20pt" tempstyle="1"><mfrac><mn id="3">12</mn><mn id="6">23</mn></mfrac></mstyle></math>'; } </script> </head> <body> <form name='inicio' action='./formulario.html' method='get'> <div id="cuadro"> <div id="formula"> <iframe id='ifr1' name='nombre'> </iframe> </div> <input type="button" id="enviar" name="enviar" value="enviar" onClick="EscribirFormula();" /> </div> </form> </body> </html>
Muchas gracias de antemano!