MathJax
MathJax copied to clipboard
load formula without page refresh
In typeset version 2, I could load the formulas without refreshing the page with this piece of code:
window.MathJax.Hub.Queue([ "Typeset", window.MathJax.Hub, math ]);
How can I do this now in version 3?
As the documentation points out, the call is MathJax.typesetPromise(). In your case you would use
MathJax.typesetPromise([math])
if math is a DOM element whose content includes mathematics.