Mozilla 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

When I go to http://www.euroboilerparts.co.uk I cannot enter details in the login box, (I can with Internet Explorer), what do I have to do to fix this?

  • 9 प्रत्युत्तर
  • 2
  • 6 views
  • के द्वारा अंतिम प्रतियुतर rferguson15

more options

On the website I click in the login box to enter details I can not enter anything. As if the login box isn't active, I have used Internet Explorer with out any problems with this site.

On the website I click in the login box to enter details I can not enter anything. As if the login box isn't active, I have used Internet Explorer with out any problems with this site.

चुने गए समाधान

  1. Make sure that you have the Bookmarks Toolbar visible: Firefox > Options or View > Toolbars
  2. Create a new bookmark on the Bookmarks toolbar via the right-click context menu
  3. Copy and paste the full JavaScript code in the location field of that new bookmark:
    javascript:void(document.onmousedown=null);
  4. Give that new bookmarks a keyword like "onmousedown disable" (without quotes).

Open the http://www.euroboilerparts.co.uk page and click the "onmousedown disable" button on the Bookmarks Toolbar to run the JavaScript code.
That should allow you to click the input field and enter the name and password.

You can contact the website and point them to this forum thread, so they can look into this and fix it for Firefox users.

संदर्भ में यह जवाब पढ़ें 👍 2

All Replies (9)

more options

Are you allowing that site to set cookies?

more options

Can you reach the fields with (multiple) presses of the Tab key?

more options

I am not aware about any cookies settings altered from default for this site.

more options

I can click on other things on the home page like different sections of the site - there are U tube clips that I can click on and watch- the tab button is working the same as my cursor- I have noticed I can actually click on to log in button and it responds saying enter your e-mail address but I still can't type anything in the log in box or password box

more options

I have just right clicked the log in / password box and it says "function disabled by Euro Boiler Parts" I will contact them again as previously they told me it was probably my security settings. Still doesn't explain why it works ok with Internet Explorer

more options

OK, I've checked the page and they have some script running that intercepts a mousedown event and that isn't working in Firefox.

function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=killCopy
document.onclick=reEnable
}

A bookmarklet with this code as the location will enable you to click in the fields.

javascript:void(document.onmousedown=null);

This code also works in the command line of the Web Console (Web Developer > Web Console;Ctrl+Shift+K).
You can add void(document.onselectstart=null); if you want to bypass the selection disabling.

more options

Thank you Cor-el you seem to have done a lot of work to find out the problem, the response from Euro Boiler Parts was simply use another browser instead of FireFox. If your findings above can be applied to make the fix I would need step by step instructions. Thanks again.

more options

चयनित समाधान

  1. Make sure that you have the Bookmarks Toolbar visible: Firefox > Options or View > Toolbars
  2. Create a new bookmark on the Bookmarks toolbar via the right-click context menu
  3. Copy and paste the full JavaScript code in the location field of that new bookmark:
    javascript:void(document.onmousedown=null);
  4. Give that new bookmarks a keyword like "onmousedown disable" (without quotes).

Open the http://www.euroboilerparts.co.uk page and click the "onmousedown disable" button on the Bookmarks Toolbar to run the JavaScript code.
That should allow you to click the input field and enter the name and password.

You can contact the website and point them to this forum thread, so they can look into this and fix it for Firefox users.

more options

Thanks cor-el it works!! I will contact the website with the thread info.