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!

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

unsupported browser

  • 2 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 10 προβολές
  • Τελευταία απάντηση από 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.

Όλες οι απαντήσεις (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;