So I need MathJax to restart on timer and check again all my page.
I mean when the page is created it does all grate. But in time I change page content and I need MathJax to reparse it all in search for Tex or mathML...
How to do such thing?
|
So I need MathJax to restart on timer and check again all my page. I mean when the page is created it does all grate. But in time I change page content and I need MathJax to reparse it all in search for Tex or mathML... How to do such thing?
| |||
|
feedback
|
|
See http://www.mathjax.org/resources/docs/?//typeset.html:
Demo here: http://mathjax.org/mathjax/test/sample-dynamic.html | |||
|
feedback
|
|
I found the simplest way to do dynamic updates with MathML is to let MathJax do the content changes (instead of the jQuery .html(s) function, e.g.) Then it processes the math while changing the content.
...
So just use the function to replace the entire contents of the div with new MathML and it will work. (The script goes in the head.) Note: If you have an empty math div and add MathML later, you will get a script error. But if the math tags are present with nothing inside the call to updateMathContent will work. | ||||
|
feedback
|