Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Èròjà atẹ̀lélànà yii ni a ti fi pamọ́ fọ́jọ́ pípẹ́. Jọ̀wọ́ béèrè ìbéèrè titun bí o bá nílò ìrànwọ́.

unsupported browser

  • 2 àwọn èsì
  • 1 ní ìṣòro yìí
  • 10 views
  • Èsì tí ó kẹ́hìn lọ́wọ́ 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.

All Replies (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;