18

I have Mathjax in my code that I show in UIWebView. while Mathjax is loading it shows the loading process n the left down corner of my UIWebView same as below pics, that i want to hide them. I do not want my user see them.

loading process

loading process

note: dummy solution is showing a fake "Loading" for some second that loading process finish and then show UIWebView. I really do not want to use this way.

Cœur
  • 37,241
  • 25
  • 195
  • 267
nfarshchi
  • 990
  • 1
  • 8
  • 25

3 Answers3

36

In your MathJax configuration, you can add this:

messageStyle: "none"

According to the documentation, this should do the trick: http://docs.mathjax.org/en/latest/options/hub.html

LGT
  • 4,957
  • 1
  • 21
  • 22
pikzen
  • 1,413
  • 1
  • 10
  • 18
  • 1
    Stack is telling I should wait 24 hour then I will be able to give your Bounty. you will got it man . – nfarshchi Jul 09 '12 at 11:27
9

Try this, it is working for me:

MathJax.Hub.Config({messageStyle: 'none',tex2jax: {preview: 'none'}});
mariosm
  • 402
  • 4
  • 9
1

Also add showProcessingMessages: false.

Luka Govedič
  • 399
  • 4
  • 14