Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

unsupported browser

  • 2 réponses
  • 1 a ce problème
  • 10 vues
  • Dernière réponse par 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.

Toutes les réponses (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;