You would have to remove the "ignore_tex" class (assuming you have set
ignoreClass to be ignore_tex rather than the default tex2jax_ignore)
before MathJax would process the DIV. If you are trying to prevent
the initial typesetting, then
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
skipStartupTypeset: true
});
</script>
should do that for you. In this case, nothing will be typeset until
you call Typeset() yourself. Your button click could then use
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
as part of its onclick handler.
If you want other stuff on the page to be typeset but not this one
div, then you could either use the elements array in your
configuration to specify the sections that you DO want to be typeset,
or you can use the "ignore_tex" class to prevent sections from being
typeset, and then remove that class after the initial typeset is
complete.
Davide
On Jun 15, 2012, at 10:13 AM, <
vernon...@gmail.com> <
vernon...@gmail.com