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

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

  • 4 réponses
  • 162 ont ce problème
  • 1 vue
  • Dernière réponse par 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

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