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

Natao arisiva ity resaka mitohy ity. Mametraha fanontaniana azafady raha mila fanampiana.

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

  • 4 valiny
  • 162 manana an'ity olana ity
  • 16 views
  • Valiny farany nomen'i 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

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