Javascript Mathjax
I use mathjax on a website, and I'm building a little javascript web app. Mathjax is configured so that when text is surrounded with dollar signs, like $10^2$, it is converted to a
Solution 1:
As per sdespont: Mathjax typesets the page once upon loading. If you need to update the math after the page has finished loading (i.e. with javascript/ajax) then call
MathJax.Hub.Typeset();
Post a Comment for "Javascript Mathjax"