Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

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

  • 4 ответа
  • 162 имеют эту проблему
  • 1 просмотр
  • Последний ответ от 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

Все ответы (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.