Questo sito potrebbe offrire funzionalità limitate durante le operazioni di manutenzione per migliorare l'esperienza utente. Se un articolo non risolve il tuo problema e vuoi richiedere supporto, la nostra comunità di supporto è pronta ad aiutarti tramite @FirefoxSupport su Twitter e /r/firefox su Reddit.

Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

it gives message that "Java Script Disabled on your browser. Please Enable it." but it is allready enabled what should i do

  • 4 risposte
  • 162 hanno questo problema
  • 1 visualizzazione
  • Ultima risposta di MikeyBoiBlue

more options

While browsing "http://edudel.nic.in" this site when we enter id and password it gives message"Java Script Disabled on your browser. Please Enable it." but it is allready enabled in Tools-> Options-> Content window

While browsing "http://edudel.nic.in" this site when we enter id and password it gives message"Java Script Disabled on your browser. Please Enable it." but it is allready enabled in Tools-> Options-> Content window

Tutte le risposte (4)

more options

Start Firefox in Diagnose Firefox issues using Troubleshoot Mode to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).

  • Don't make any changes on the Safe mode start window.

See:

more options

The problem is there's a glitch in the javascript of http://edudel.nic.in/mis/MisAdmin/frmMisLogin.aspx There's a form element with an ID of "txtpassword", but in their validation function, they call it with getElementById("txtPassword"). Obviously a case issue, but it apparently works in IE.

I created a workaround for a user I met in #firefox, a simple greasemonkey script that replaces the function with a fixed version. Here's the link: http://userscripts.org/scripts/show/102156

more options

You can also do such a redefine with a bookmarklet that you need to run before submitting the form.


javascript:
function test(){
 var text1 = document.getElementById('TextBox1').value;
 var text2 = document.getElementById("txtpassword").value;
 var text3 = document.getElementById("TextBox3").value;
 document.getElementById('txtpassword').value = text1+text2.substr(2,200)+text3;
 document.getElementById('TextBox4').value = text2.substr(0,2);
}
more options

It's The Fastest Fox Add-On or at least it was in my case. Try that one first if you have it. Otherwise follow the already suggested advice, but disable Add-Ons in groups of 3 after you run in Safe Mode until you no longer have that message. Hope this helps I spent about 30 minutes figuring it out.