How do I disable firefox going forward and back with four finger swipe?

Whenever I swipe with 4 fingers on my mac, firefox goes forward or back depending on the direction. I want it to stop doing this. How do I make it so?

You can also try to set the related <b>browser.gesture</b> prefs to an empty string value on the <b>about:config</b> page.
You can open the <b>about:config</b> page via the location bar and you can accept the warning and click "I'll be careful" to continue
*http://kb.mozillazine.org/about:config

Similar Messages

  • When I last up dated Firefox the forward and back arrows dissapeared. Now if I want to go back I have to go to History to get back to previous page. How do I get these forward and back arrows?

    On MSN web sight there use to be forward and back arrows on the left hand upper side of page that let me go forward and back from page to page. Now the arrows are gone and I have to use the History or Bookmarks to move back and forth.
    The arrows didn't reappear when I up dated to the new foxfire.

    Click the Firefox button, go to Add-ons, then Plugins and disable the following:<br><br>
    * Fun Web Products Plugin<br><br>
    * My Web Search<br><br>
    Both of these are adware/spyware and cause performance issues in Firefox.
    Next, click the Extensions menu link (above Plugins where you are) and remove the "Ask Toolbar".
    If the problem persists, please do the following:<br><br>
    #Click '''Help '''| '''Restart with Add-ons disabled'''.<br><br>
    #In the next menu which appears, checkmark: "'''Reset toolbars and Controls'''".<br><br>
    #Finally, click the button called "'''Make changes and restart'''".
    Just in case you weren't aware of it, you can right click the Back or Forward buttons to get a list of sites visited. If you'd like to see the return of the arrow on the Back button, install this add-on: https://addons.mozilla.org/en-US/firefox/addon/backforward-dropmarker/
    Last but not least, some of your plugins are seriously out of date which exposes your system to exploits. Please visit the [http://www.mozilla.com/en-US/plugincheck/ Plugins Check] page and update where necessary.
    See: http://www.adobe.com/support/security/bulletins/apsb11-08.html

  • Firefox 8 and 9beta. Back and Forward buttons greyed out. Right click menu also has forward and back greyed out. Updated all plugins, then disabled all plugins and extensions and started in safe mode. No change.

    My forward and back buttons are greyed out after update to Firefox 8. Tried to move to 9 beta, but same behavior. Back and Forward also greyed out in right click menu.
    Attempted to fix by updating all plugins and extensions, then disabled all plugins and extensions, and then tried to start in safe mode. Nothing worked.

    You could have backed up your profile folder. If you did, [[Recovering important data from an old profile]] can help :)

  • Disabling of FORWARD and BACK Button of Internet Explorer.......

    Hello everybody,
    Can anyone tell me how to disable the FORWARD and BACK Button of Internet Explorer through JavaScript.......If possible give me the code snippet.....

    Hi
    I I tell you the answer, I suppose it means you'll be able to spend less time on JavaScript and more time on Java, so here goes:
    Open your page in a new window using window.open(...). This JavaScript takes lots of parameters, such as the page you want to display in the window, as well as settings for hiding the toolbar (which includes the forward/back buttons).
    Do a search on the net for window.open for full syntax. I think you can modify the properties of the current window if you want to stay in the same window, but can't remember the syntax.
    Note you can also disable the right mouse button by defining the following function:
    <SCRIPT language="JavaScript">
    <!--
    var message="Right-click disabled!";
    function click(e) {
    if (document.all) {
    if (event.button==2||event.button==3) {
    alert(message);
    return false;
    if (document.layers) {
    if (e.which == 3) {
    alert(message);
    return false;
    if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=click;
    // -->
    </SCRIPT>
    I don't know how to stop the user from pressing 'Backspace' unless you use Java to monitor the navigation.
    Hope this helps

  • Disabling FORWARD and BACK Button of Internet Explorer thru JavaScript....

    Hello everybody,
    Can anyone tell me how to disable the FORWARD and BACK Button of Internet Explorer through JavaScript.......If possible give me the code snippet.....

    You can not do this in JavaScript.
    However, if you set the right response headers in the response IE will disable them:
    response.setHeader("Pragma","no-cache");
    response.setHeader("Cache-Control","no-store");
    response.setHeader("Expires","0");
    would do the trick.
    Silvio Bierman

  • How do I disable firefox off line it will not let me connect to the web

    how do I disable firefox off line, it will not let me connect to the web

    Go into settings and reset all network connections. Then restart your device by holding the power and home button until the Apple logo appears. You will not lose any data. When the device restarts connect to your wireless network.

  • How do you use forward and back button on mouse and use "zoom" in web browser.

    Ok so apparently this forum is ruled with an iron fist or something my very honest and truthful problems with these issues seem to have been instantly deleted in my last discussion?
    I'll try this once more.
    1) How do you use the forward and back button on a mouse without having to buy a product like Steer Mouse? There must be a way to do this without having to buy a program given it's such a useful feature that 99% of users need. I don't want to spend hours researching something that should already work. Any advice?
    2) How do you zoom in for web browsers like Chrome without it globally zooming in everything on the monitor (even background applications). I don't want to zoom in background applications. I want to be able to zoom in the web browser and still maintain all the features like the side bar, not just a little magnifying glass type thing.
    I'm currently zooming in with the CTRL-Middle Mouse button, but I can't find a way to use this feature so it's useful to browse the web it seems to not scale the browser correctly but rather is a global zoom. Any solution for this?

    Thanks so much!
    Like I said I am new to Apple products so it's still unclear to me which programs I do or don't need as I'm setting up and configuring all my software and devices.
    The Logitech Control Center appears to work perfectly for what I was trying to do!
    I accidently clicked "This helped me" instead of "This Solved My Question", sorry about that this was a solve!

  • How can i disable a submit button and execute submit_action method on click

    Good Day,
    On my page I have a submit button that execute the submit_action method of the page backing bean that submit data captured on the page into a database and activate another class that send mail at the same time on a click of the submit button,the mail process takes a while before returning back to the page.I was able to disable the submit button to prevent the user from keep click while the process is running but the issue is on clicking the submit button it only disable the submit button without executing the submit_action method of the page backing bean.How can i disable the submit button and execute submit_method of the backing bean at the same time.
    Thanks in advance.

    I tried this out on one of my pages to see if it works.
    First, I added the following JavaScript to my submit button's onClick event:
    this.disabled=true; return true;When I clicked the submit button, it was disabled but the form was not submitted.
    I deleted the JavaScript from the onClick event and added the following JavaScript to the form's onSubmit event:
    var button = document.getElementById("form1:submitButton"); button.disabled=true; return true;When I click the submit button, it was disabled and the form was submitted but the button's action method was not called.
    The next thing I tried was to change the onSubmit event code:
    var button = document.getElementById("form1:submitButton"); setTimeout("button.disabled=true", 500); return true;This seemed to work. The difference was that I added a 1/2 second delay before disabling the button.
    See if that works for you. If not then I'm fresh out of ideas.

  • In Firefox 3.6.10 I was able to go forward and backwards between pages without the page defaulting to the top of the page. Is there any way to prevent the page from automatically moving to the top when using the forwards and back buttons in Firefox Four?

    I like to be able to navigate backwards and forwards without having to scroll down and find where I was previously. In Firefox Four, when using the forwards and back buttons, the page will automatically return to the top of the page. Is there any way to change this setting in Firefox Four to prevent it from doing that?

    Thanks for the response. No Time Machine, but I probably have a backup from a few months ago on an external hard drive. :/ I guess it'd have useful history, but not if it overwrote the last 3 months or so of Awesome Bar, that might not be so great.

  • Ghostery disables forward and back buttons in version 10

    Forward and back arrows are greyed out and do not function when Ghostery is enabled. If I start in safe mode, without Ghostery, the forward and back arrows function properly.

    -> [[Back and forward or other toolbar items are missing]]
    If the buttons are working in -> [[Safe Mode]], then you need to make sure which extension was causing the problems.
    * [[Troubleshooting-extensions-themes#w_test-for-faulty-extensions|Test for faulty extensions]]
    * When you find-out which extension was the source of problem, Contact the Add-on's Developer about this issue and Report the problem.
    Check and tell if its working.
    Not related to your problem but some of your Firefox Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • How do I disable firefox so that i can download a program for a Garmin GPS

    how do i disable firefox so that i can download what i need to register a garmin GPS

    Try the forum for Adobe Acrobat.

  • Been using LR since 2004. My raws are all of sudden jumping around in Develop module. Image does not stay, it goes forward and backwards randomly, even with magic mouse off. Can't edit. Using MacPro, currently everything. Canon 5dmk3 raws

    Been using LR since 2004. My raws are all of sudden jumping around in Develop module. Image does not stay, it goes forward and backwards randomly, even with magic mouse off. Can't edit. Using MacPro, currently everything. Canon 5dmk3 raws

    This sounds like a hardware issue. I haven't seen this particular problem reported before.

  • The forward and back buttons in firefox 4 beta 7 dont work after trying to customize and the bookmarks button only shows when customizing

    after installing firefox 4 beta 7 any customization of navigation bar breaks the forward and back a page buttons they stop working and and restoring the default buttons option it still doesn't work even in the safe mode and the text in menu buttons looks glassy

    What I found was that anytime I installed one of the beta's, as soon as I tried to customize the bars and hit the "small icons" checkbox from customize that I would no longer be able to have the round shaped foward back buttons but only square (rectangle) small buttons.
    To get those round ones back, but never again to the right of the "File - Edit - etc" bar, all I did was move all the buttons down to the navigation or another bar below as I have the space.
    The problem still occurs that anytime I attempt to put them back up top beside the file etc options they go back to those small rectangle buttons :(

  • How do I disable a wireless network and recreate it?

    How do I disable a wireless network and recreate it?  I believe I set it up incorrectly so I would like to delete it or disable it and recreate the wifi network

    Go into settings>network, highlight the network you want to delete, and click - at the bottom of the services list. You can then add it from scratch by clicking on +.

  • My forward and back arrows on SafariVersion 5.1.10 (6534.59.10) have disappeared, how do i get them back?

    My forward and back arrows on SafariVersion 5.1.10 (6534.59.10) have disappeared, how do i get them back?

    Dear Niel,
      Thank you for telling me about the view menu , i hope it works do I have to restart the computer for
    the arrows to become effective? I tried just now and from view>Customize Menu but did not work. Thanks Basssman.

Maybe you are looking for

  • Problem: new entered data is saved but I am facing one error message --- no

    This is a module program for gate entry of materials(miro). This is a simple entry form which updates z tables with data entered. I have to send the new record details automatically through mail to the particular vendor email  id from where the mater

  • Fatal hard drive crash - how do I install windows on new Hd?

    Hey... So my lenovo twist hd completely crashed today, and I can't boot or do anything. He is making clicking noises. Bought a new SSD, but how do I get Windows back on my machine? It's not like we get an installation CD anymore. And no win 8 key sti

  • New iMac, 24" 3.06 Ghz - WIRED Connection Problem

    Hi All - This machine has been in service 2 weeks. About a week ago, the connectivity to the internet has become faulty. I can successfully connect to a web site, but after about a minute or so, it will drop. Using the same browsers and MacOS on a Ma

  • Pause button for Captivate 4

    I've done a lot of work for a customer, originally I used a shortened playbar with next/back and play/pause.  Now with issues in Captivate 4 (The playbar appears below the course instead of on top) I need to import a Pause button as I cant use the sk

  • Identifiying rows retrieved (on profiling=x)

    Hi, I am using SAP design studio 1.4 SP1 version. How to identify if there was a backend data fetch, and how many records retrieved ? I have a hypothesis, on APPLICATION.setVariableValueExt() to test Case1 :  Say we have BEx query with 3 variables. M