最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

printing - How to trigger a javascript function when "Processing Math" in MathJax reaches 100% - Stack Overflo

programmeradmin0浏览0评论

I would like to call a javascript Print() function when the js library MathJax finishes to process the visited web page.

At the moment the Print() function is triggered using onload but it seems to stop the Processing Math task of MathJax (demo here); users need to dismiss the browser's Print pop-up to lets MathJax finishes its processing.

I would like to be able to call Print() just when Processing Math in MathJax reaches 100%.
Any ideas?

I would like to call a javascript Print() function when the js library MathJax finishes to process the visited web page.

At the moment the Print() function is triggered using onload but it seems to stop the Processing Math task of MathJax (demo here); users need to dismiss the browser's Print pop-up to lets MathJax finishes its processing.

I would like to be able to call Print() just when Processing Math in MathJax reaches 100%.
Any ideas?

Share edited Jan 8, 2011 at 11:10 systempuntoout asked Jan 8, 2011 at 9:26 systempuntooutsystempuntoout 74.2k47 gold badges175 silver badges246 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

Push the Print mand onto the MathJax processing queue so that it will be called after MathJax finishes typesetting the page. E.g.,

MathJax.Hub.Queue(Print);

or

MathJax.Hub.Queue(function () {
  // do stuff here
  Print();
});

See the documentation at

http://www.mathjax/resources/docs/?queues.html#the-mathjax-processing-queue

for more details.

The MathJax message area has a delay before it is removed so that you can actually read it. The Print() call apparently blocks the javascript that would have removed the message. So you need to add a delay of your own before running Print(). I think the message delay is 600 ms, so if you change your

MathJax.Hub.Queue(Print);

call to

MathJax.Hub.Queue(
  ["Delay",MathJax.Callback,700],
  Print
);

then that should delay your Print() call until after the message is removed.

Davide

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论