Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

unsupported browser

  • 2 përgjigje
  • 1 e ka hasur këtë problem
  • 3 parje
  • Përgjigjja më e re nga cor-el

more options

I was just on interactmath.com last night firefox updated and now i cannot access the web page it says I have a unsupported browser.

I was just on interactmath.com last night firefox updated and now i cannot access the web page it says I have a unsupported browser.

Krejt Përgjigjet (2)

more options

This page says Firefox 8.x is supported, but it didn't work for me either when I tried to load an exercise.
http://www.mathxl.com/BrowserCheck/SystemRequirements.aspx?bookId=91719&autoh=yes&centerwin=yes

Contact that web site to let then know that they have a problem with a supposedly supported browser.

more options

They are checking for Firefox 2 till 7, so 8 and above fails.

From http://interactmath.com/common/browsersniffer_1.js

this.is_gecko = (agt.indexOf('gecko') != -1);
this.is_firefox = (agt.indexOf("firefox") != -1);

if (this.is_firefox)
 {
  this.browser_name = "Firefox";
 }
        
this.is_firefox7 = this.is_firefox && (agt.indexOf("firefox/7") != -1);
this.is_firefox6 = this.is_firefox && (agt.indexOf("firefox/6") != -1);
this.is_firefox5 = this.is_firefox && (agt.indexOf("firefox/5") != -1);
this.is_firefox4 = this.is_firefox && (agt.indexOf("firefox/4") != -1);
this.is_firefox3 = this.is_firefox && (agt.indexOf("firefox/3") != -1);
this.is_firefox2 = this.is_firefox && (agt.indexOf("firefox/2") != -1);
this.is_firefox2up = this.is_firefox2 || this.is_firefox3 || this.is_firefox4 || this.is_firefox5 || this.is_firefox6 || this.is_firefox7;