Disabling toolbar in browser

i have to disable the toolbar in the browser when the application is running.ie back and other buttons.
can this be done. i don't know java script or jsp much as i'm a beginner.
does it require java script or jsp. i have a java script code but i dont know how it works. can any body help me please.
code goes here:
<html>
<body>
<SCRIPT LANGUAGE="JavaScript">
window.open('x. htm','newWindow','height=768,width=1024,toolbars=n
o,scrollbars=yes,resizable=yes');
window.opener = top;
window.close();
</SCRIPT>
</body>
</html>
please tell me whether this works or is there any other method.
thanks

x.htm is the webpage that you want to open in the new window.
Replace that with whatever you wish.
However, you can not completely stop people using the browser toolbar buttons. A simple ctrl+N will open up a new window, with the same URL, and the buttons available.

Similar Messages

  • Enable Commenting Toolbar in Browser (doesn't work for IE / FF)

    I've seen a lot of chatter about this scenario but nothing seems to be working for me. What I want to do is this:
    Create a .pdf.
    Attach to the enterprise wiki software Confluence.
    Check-out in Confluence.
    Have the Commenting / Annotation toolbar available in IE / Firefox.
    Make changes.
    Save the .pdf.
    Check back into Confluence.
    This isn't working for me. What I've been doing is this.
    Create a .pdf in FrameMaker 10.
    Open in Acrobat 9 Pro.
    Navigate to Advanced > Document Processing > Document Javascripts
    Create a Script (I called mine 'Commenting').
    Click Add....
    Used this JavaScript:
    function Commenting()
    {Collab.showAnnotToolsWhenNoCollab = true;
    Click OK.
    Click Close.
    Save.
    Click Comments > Enable for Commenting and Analysis in Acrobat Reader.
    Save.
    Attach the .pdf to Confluence.
    When I Checkout the file from Confluence in IE 8, the document appears but toolbar doesn't appear. When I Checkout the file in Firefox, the document doesn't appear at all.
    I'd really appreciate a clear response on how to get this work. While I'd prefer to use the Acrobat Commenting from within Acrobat Pro for peer document review, I've been asked to research using Confluence as the primary nexus for peer review. I'm not having any luck thus far.
    Thanks in advance,
    John Cook
    Technical Writer
    Merge Healthcare

    Clicking the link to the .PDF launches the file in a browser (same gimped toolbar for both IE 8 and Firefox). When I right-click the .PDF toolbar in-browser, I have access to the following toolbars:
    File
    Find
    Page Display
    Page Navigation
    Select and Zoom
    Tasks
    I don't see anything for Commenting / Annotation.

  • Enabling/Disabling PDF in Browser Option (Acrobat XI)

    Firstly, know that yes I understand that this setting is no longer found in and handled by Acrobat XI and that to enable or disable PDF in browser setting you enable/disable the add-on in IE (or other browser).
    In the hopes of making it more straightforward and convenient for users to toggle this setting, one option is being explored to create a custom Javascript action in Acrobat to write to the user registry to turn this on/off.
    Is this feasible? Can Acrobat JavaScript actions read and write to the user's registry? As we have a collection of users that need to regularly toggle this setting (for reasons I won't go into here), it would be ideal to have an easy and straightforward means to change this setting. One possibility might be a custom Acrobat JavaScript action.
    Thoughts, suggestions, ideas?
    Thank you

    Thank you. Forgive me but I want to make absolutely certain...in no way can a custom Acrobat JavaScript action change the user's registry. Is this correct? A pointer to official documentation stating such would be excellent. I have to convince someone not easily convinced

  • "Java Script Disabled on your browser. Please Enable it."

    I tried to log-in to this site:
    "http://www.edudel.nic.in/mis/MisAdmin/frmMisLogin.aspx"
    but instead got this message:
    "Java Script Disabled on your browser. Please Enable it."
    I have already enabled JavaScript in settings, but it gives the same error. When I tried doing the same in Internet Explorer (v9), everything was working fine. Please tell me what to do.

    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

  • Disabled Cookies on Browser, BUT How do you tell?

              I know that you can't save a permanent cookie to the user's computer when cookies
              are disabled in a browser. You can set a temporary cookie that will last for the
              session. An example is Weglobic's JSESSIONID cookie.
              First. I was hoping that when I tried to set a permanent cookie, that at least the
              cookie would last for the session so that it gets sent back to Weblogic like JSESSIONID.
              That doesn't seem to be the case. Doh! Any comments?
              Second. Is there a way I can tell if a browser has disabled cookies so that I can
              set my cookie as a temporary cookie instead of a permanent cookie so that it gets
              passed back to Weblogic in subsequent request? I looked at the header information
              and I didnt' see anything.
              BTW. I'm developing on Windows 2000 and deploy to Unix. Using iPlanet 4.1 as the
              WebServer and Weblogic 6.1 SP2.
              Thanks!!! Later...
              - Wayne
              

              Thanks for the Info guys!.
              I got a work around. I have client side JavaScript that checks to see if Permanent
              Cookies are disabled. I then pass the flag to the destination URL. If cookies are
              disabled, then I just set it to a temporary cookie and it's find.
              Got some tips from groups.googles.com. This side use to be the Deja Newsgroups.
              Later...
              - Wayne
              "Vyas" <[email protected]> wrote:
              >
              >If you use encodeurl to encode all your links (in the HTML you throw back
              >to browser)
              >then weblogic is supposed to detect if a browser is able to accept cookies
              >or not
              >(if not then uses URLencoding to put the cookies in the URL).
              >By default URLencoding is enabled in weblogic if cookies are turned off
              >on the browser
              >side.
              >
              >As usual there are a few caveats though
              >1. WL documentation states the because for the first communication, since
              >weblogic
              >does not know that a cookie is being accepted or not , it always encodes
              >the uRL.
              >I don't how this is supposed to be really true or not, because if true the
              >first
              >URL should always have JSESSIONID, I did not find it to be the case.
              >2. Even though cookies are turned off on the browser, I did not see URL
              >encoding
              >happening all the time.
              > There is an explicit option in weblogic to turn off cookies completely
              >(irrespective
              >of what the browser is doing).
              >
              >The bottomline is that your app has to code for urlencoding.
              >
              >Vyas
              >
              >"Wayne Lau" <[email protected]> wrote:
              >>
              >>I know that you can't save a permanent cookie to the user's computer when
              >>cookies
              >>are disabled in a browser. You can set a temporary cookie that will last
              >>for the
              >>session. An example is Weglobic's JSESSIONID cookie.
              >>
              >>First. I was hoping that when I tried to set a permanent cookie, that at
              >>least the
              >>cookie would last for the session so that it gets sent back to Weblogic
              >>like JSESSIONID.
              >> That doesn't seem to be the case. Doh! Any comments?
              >>
              >>Second. Is there a way I can tell if a browser has disabled cookies so
              >>that I can
              >>set my cookie as a temporary cookie instead of a permanent cookie so that
              >>it gets
              >>passed back to Weblogic in subsequent request? I looked at the header
              >information
              >>and I didnt' see anything.
              >>
              >>BTW. I'm developing on Windows 2000 and deploy to Unix. Using iPlanet
              >>4.1 as the
              >>WebServer and Weblogic 6.1 SP2.
              >>
              >>
              >>Thanks!!! Later...
              >>
              >>
              >>- Wayne
              >>
              >
              

  • How to disable auto detect browser settings

    When I want to start scan to Optimize Internet in "Easy Solve" feature of Comcast. It says DISABLE AUTO-DETECT BROWSER SETTINGS to enable scan running. Please send me the answer.

    Is this page accessible to non-subscribers? If so, please provide a URL. If not, hopefully Comcast can answer this question.

  • My kids use firefox on my computer. Is it possible to disable the private browsing feature so they can not go on and use it ?

    I want the computer to keep a history of all the site they have searched, but can not know for sure if they turn on/off the private browsing function. Is it possible to disable the private browsing function and put a lock / password on it ?
    Thanks,
    David

    Even if it was possible to remove or disable "Private Browsing" then that still won't make it impossible to delete private data like visited websites (history) or cache or cookies.<br />
    There are a lot of ways to clear such data, either via [[Clear Recent History]] or directly by deleting the History in the Library or sidebar.<br />
    Private Browsing makes it easier because all data is kept in memory and nothing is saved to disk, so nothing needs to be removed.<br />
    <br />
    If you want to see which sites have been visited then you should look at others means outside Firefox like a router or firewall with a password protected logging feature that can't be bypassed or a program like Wireshark.
    * http://www.wireshark.org/download.html
    * http://en.wikipedia.org/wiki/Wireshark
    See also:
    * http://kb.mozillazine.org/Parental_controls

  • I'm unable to lock the toolbars so that disabled toolbars remain disabled. HELP!

    I want to be able to disable toolbars; enable as needed, e.g., Yahoo toolbar. However, every time I open Firefox in a new window, there are the toolbars I just disabled in a previous window. What am I doing wrong/not doing?
    I'm also not able to control Panel uninstall certain toolbars, e.g., Absolutist Games Customized Web search..which i feel like using a bomb on to get it off of my toolbar group!
    Please help. Do I have to completely uninstall Foxfire, reinstall?
    Mizharmony

    Do you think people can't read? I know where extensions and add-ons and plug-ins are, and where the options are, but what I don't know is why Firefox 4 was released with so much that doesn't work. How about some advice that's not screamingly obvious?
    And why does Hotmail looks so good on Chrome and so dire on Firefox?
    Why do icons keep moving and disappearing?
    And why does yahoo keep taking over as the search engine?
    And why does the yahoo toolbar keep coming back no matter how many times I get rid of it?
    Why is Firefox still so slow opening?
    How could Mozilla release this monstrosity? IE9 (I can't believe I'm saying this) is better.

  • Question I am getting this error and see no place to change scripting?JavaScript is disabled in your browser. Please activate JavaScript from Tools Internet Options Security Internet Custom Level Scripting Active Scripting Enabled.

    JavaScript is disabled in your browser. Please activate JavaScript from Tools>Internet Options>Security>Internet>Custom Level>Scripting>Active Scripting>Enabled.
    These are the instructions for internet explorer but i can't see anything in firebox.

    In my Firefox 5.0 I see check-box for enabling/disabling JavaScript in the "Content" tab.
    Is it checked in your Firefox and JavaScript still not working?

  • Can i disable start private browsing - mac 10.5.8

    don't want user to have the option to turn on private browsing. can i disable start private browsing - mac 10.5.8, firefox 3.6.11

    Sorry, the developers didn't provide a switch to turn Private Browsing off. Another Firefox user has come up with a way to do it, but it requires some skill to save and install the necessary code. <br />
    http://kb.mozillazine.org/User:Dickvl#Private_Browsing
    http://kb.mozillazine.org/User:Dickvl/Private_Browsing_disable

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

    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

    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

  • Fail to update flash,gets "JavaScript is currently disabled in your browser and is required to download Flash Player" However javascrip is available and enabled

    Firefox requests to update Flash but the download fails over and over initialization at 50%.
    also in one trial of download i recieved the message: "JavaScript is currently disabled in your browser and is required to download Flash Player". But i checked and it is enabled.
    I am stuck with Flash In FF and moving to Chrome.

    Your system details list doesn't show that the Shockwave Flash plugin is installed and enabled.
    *https://support.mozilla.org/kb/Troubleshooting+plugins
    Latest Flash player versions here:
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html
    You can verify on the Adobe Flash Players Test Page that the Flash plugin is working and which version you have.
    * http://www.adobe.com/software/flash/about/
    If you use extensions (Firefox/Tools > Add-ons > Extensions) that can block content (e.g. Adblock Plus, NoScript, Flash Block, Ghostery) then make sure that such extensions aren't blocking content.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Is it possible to find out whether cookies are disabled in a browser in JSP

    Is it possible to find out whether cookies are disabled in a browser in JSP?
    Is there any code for that?

    This script checks to see if the user has cookies enabled and if they don't give them a pop-up box telling them they must enable them. The alert message has to be all one long line in order to work.
    <script language="JavaScript">
    document.cookie='CookiesEnabled=1';
    if (document.cookie=='')
         {alert('Please enable your cookies in order to continue.');}
    </script>

  • Disable SharePoint Mobile Browser Redirect

    I am trying to disable the Mobile Browser Redirect.  My goal is that even on a mobile device, our users will see the full SharePoint Portal. 
    I have edited Compact.browser and set all ”isMobileDevice" to False, however I am still being re-directed to the mobile site.
    Is there another step that I am missing.
    Any help is appreciated.
    Maggie

    Hi Maggie, did you check out this link?
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/2c2d4216-2e96-4dca-8772-5b291d42c545/disable-sharepoint-2010-redirect-to-mobile?forum=sharepointgeneralprevious
    cameron rautmann

  • Can I disable just private browsing on my iPhone?

    I need to know if it's possible to disable the private browsing feature in Safari on my iPhone without disabling the browser itself.

    Hi!
    In iOS 7 on the iPhone or ipad:
    One way to do it is by adding a restriction on adult content.  Click settings, restrictions (make a password), them scroll down to "websites" under allowed content (below the list of things to allow or not allow), then select "limit adult content."  Poof... No more private browsing option in safari.
    Matt

Maybe you are looking for

  • I can't drag and drop from a data CD I recorded

    I recently burned some audiobooks files (in mp3 format) as data cd's in Toast 8.0.1. When I go to reload them back onto my 20" 2 Ghz Dual Core Intel I can't drag and drop the files directly into any folder while using the columns view in a finder win

  • How to edit the date in an event

    Help please, I uploaded some pictures into iphoto (I'm new to it). However they were uploaded and dated in an event automatically as 2004 and they are supposed to be 2009. Does anyone know how to change the date for events manually? I cannot figure i

  • Should a list of updated apps remain on the Updates page?

    Before ios 7, as soon as an app would update, the icon and any mention of the update would disappear from the Updates page.  Now there is a list there of all the apps that have updated since I installed ios 7.  The list is organized by date with head

  • Problems getting Excelsius 2008 line chart to integrate into Crystal 2008

    I am playing around with integrating excelsius 2008 into Crystal 2008 and I can't and am getting rather frustrated.  I have a simple output of the following: Month     % 1st delivery - Actl 1                   65.00 2                   89.80 3       

  • How to get a previous iTunes library recognized in OS X Lion

    I've been using iTunes for some time now - I have my iTunes folder stored on an external FW hard drive partition. Doesn't seem to be recognized by iTunes in OS 10.7.x Lion on my Macbook. My iPhone now says it is over capacity, I can't organize my iPh