Hmm...Disable Javascript = fast page loads, but...

...it kills the "Full Text Editor" from loading. And since the link for composing a message in HTML  is wrapped in the Javascripted F.T.E., I can't access it, either.
I just had the fleeting idea to try disabling Java, and then Javascript (and then both) in my browser (Firefox 3.0.x on Mac OS X 10.4.11) to see what would happen.
SUMMON-A-MITCH!!! The pages load almost as fast as they used to in the WebX forums.
Too bad it kills my ability to also participate.

Phos±,
Is it possible to read the web pages and participate only by posting through email?  Just thinking out loud…

Similar Messages

  • After installing Firefox6 many sites will not finish loading. I click on "stop loading this page" and then click on "reload this page" and the page loads. Also if I disable javascript the page will load.

    After installing Firefox 6 MANY web site will not finish loading. I disabled all add-ons and still have the problem. If I disable javascript, the pages will load. When the page is trying to load, if I hit "stop loading this page" and then hit "reload this page", the page will load; but sometimes I have to do this 2-3 times for the page to finish loading. No problem with these pages using IE8.

    I see that you ave changed some network.http prefs.<br />
    Doing that can cause all kinds of problems because not all servers like such changes, so you can try to reset those prefs on the about:config page.<br />
    network.http.max-connections 48<br />
    network.http.max-connections-per-server 16<br />
    network.http.max-persistent-connections-per-proxy 16<br />
    network.http.max-persistent-connections-per-server 8<br />
    network.http.pipelining true<br />
    network.http.pipelining.firstrequest true<br />
    network.http.pipelining.maxrequests 8<br />
    network.http.proxy.pipelining true<br />
    network.http.request.max-start-delay 0<br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Firefox is totally unresponsive, the page loads but all buttons are disabled. I have to use task manager to close it.

    Page loads but totally unresponsive!

    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Update All your Firefox Plugins
    * https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    * http://www.mozilla.com/en-US/plugincheck/
    ** Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)
    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Troubleshooting plugins
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins
    Check and tell if its working.

  • The workspace page loads, but does not enable the toolbar.

    Dear,
    I'm using the EPM11.1.2.2. The workspace page loads, but does not enable the toolbar with the "Explore". Can anyone help me?
    thanks

    Maybe you have not installed and configured the RAF components.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Execute javascript on page loading?

    i want a javascript function to execute on page loading. it should set the local user name ( from system.properties) in an inputtext.
    how can i do this?

    You can't. It would be a huge security hole otherwise.
    In a certain web browser developed by some team in Redmond you can use ActiveX, but that thing would by default popup a security dialogue asking the user for permission to get it.
    Forget about it. Rather consider an application which runs at the client machine, e.g. a signed Applet or Web Start Application.

  • Execute javascript on page load

    All,
    I have a javascript working well on click button via javascript:html_Submit_Progress(this) but now i want to use the same code to execute onload page can somebody help me with the necessary change on this code please to make it work whenever the page loads,
    function html_Submit_Progress(pThis){ 
         $x_Show('AjaxLoading');
         window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
         doSubmit('APPLY_CHANGES');
         function submit_HideAll(pThis){ 
         $x_Hide('wwvFlowForm');
         doSubmit('APPLY_CHANGES');
         function submit_ButtonRegion(pThis){ 
         $x_Hide('button_region');
         doSubmit('APPLY_CHANGES');
    ..appreciated in advance.

    So I assume your code in PageLoad looks something like this?
    $x_Show('AjaxLoading');
    window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    doSubmit('APPLY_CHANGES');Don't put the doSubmit call in page load. That will cause a submit, then the page loads again, submits again as a result of being called on page load, etc. and that's why you're looping over and over...every time the page loads you're submitting again.
    I would instead do this.
    1. Make a function somewhere on your page wherever appropriate:
    function html_Progress(pSubmit){
    $x_Show('AjaxLoading');
    window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    if(pSubmit)
      apex.submit(pSubmit); //doSubmit is "old"...apex.submit is the new Apex 4 way of submitting
    } 2. In page load DA do this:
    html_Progress();
    3. Anywhere else you need it called and submitted too:
    html_Progress('APPLY_CHANGES');
    In other words, if the caller doesn't pass anything for pSubmit, don't submit. (This would be in a page load context.)
    If the caller does pass something for pSubmit, then submit. (This is likely to be pressing the Apply Changes button or whatever else.)
    Edited by: gti_matt on Sep 26, 2012 1:31 PM

  • Disable input on page load depending on page level item

    Hi All,
    I am trying to set the disabled property of a HTML input button when an APEX page is loaded. This can be achieved easily by using getElementById and setting the *"disabled"* property in the onLoad event of the body.
    However, I need to keep the state of the button as disabled if the page is refreshed by the user or through a submit. I've stored this state in a page item, however using +$x(PAGE_ITEM_NAME)+ in the onLoad body event does not return me the value stored in the page item. Calling the same code using an onClick of a dummy button returns me the value.
    1. What is the appropriate way of getting the value of page_item during a page load?
    2. If doing it on a page load is not feasible, is there a way of setting the state of a html input button to disabled using a page process for e.g?
    Thanks heaps,
    Raihaan

    Hi Raihaan,
    Let's do this a little bit different, as this approach gets you into trouble.
    Create an application process called "GETLOCK" (Shared Components > Application Processes > Create), make sure the "point" is set to "onDemand". Paste in the following source:
    DECLARE
      result NUMBER;
    BEGIN
      FOR c IN (select count(flag) lock_status from c_locking where rownum = 1) LOOP
        result := c.lock_status;
      END LOOP;
      HTP.P(result);
    END;Next go back to your page, and go to the page definition, paste the following code in the HTML Header:
    <script type="text/javascript">
    function checkButtons(){
      ajaxRequest = new htmldb_Get(null, &APP_ID., 'APPLICATION_PROCESS=GETLOCK', 0);
      ajaxResponse = ajaxRequest.get();
      if (ajaxResponse == 1){
        $x('Button_1').disabled = true;
        $x('Button_2').disabled = false;
      }else{
        $x('Button_2').disabled = true;
        $x('Button_1').disabled = false;
    </script>Change the Button_1 and Button_2 to the button names accordingly (make sure it is the "id" attribute).
    Next paste the following javascript in the Page "Footer Text":
    <script type="text/javascript">
      disableButtons();
    </script>What you just did, is create an Application Process, that is called upon by an AJAX call in the javascript header, that is fired by the javascript in the page footer.
    I think you allready have your DML taken care of, with the submit of your buttons. Now every times the page loads, it checks which button to disable.
    Hope it helps,
    Greetings,
    Rutger

  • Safari bizarre bug: web page loading but not rendering

    Discovered a very bizarre behavior in Safari 5.1 (OSX 10.6.8) in which, after logging in to a secure internet banking site, the subsequent page loads into the browser (address bar updates new url and source code reflects new page), but the screen fails to redraw the new page. The bizarre thing is that the previous page, which is still visible, is not functional, the links and navigation for the new page are, however. So I can continue navigating through the site blindly by finding links with the mouse hover state, all while the original log in screen still appears in the window. Cannot reproduce this on any other browsers, including Safari 5.0.6
    Anyone have any insights or experience with this kind of behavior?

    Write down the password to the banking site. Enable guest logins and log in as Guest. Launch Safari and test. Same problem? After testing, log out of the guest account and disable it if you wish.
    Mac OS X 10.6 Help: Creating a guest user account

  • Page loads but will not display

    I have an IP address that allows me to view my cctv cameras.It works fine with Internet Explorer,but when i enter the same address in to my safari browser the page seems to load but will not display anything.
    I assume its some thing do with my internet security settings but do not now where to find them to allow this site. Can any one help please.
    Thanks

    Try temporarily turning off your firewall via SystemPreferences>Security>Firewall. If the site then works you can turn the firewall back on and specifically allow Safari.

  • Javascript makes page load forever in IE

    I'm using this function (
    http://homepage.ntlworld.com/bobosola/pnghowto.htm)
    to make a png file use alpha transparency proerly in IE. It
    works great,
    except the page loads forever. The stupid MS logo at the top
    right keeps on
    animating and the info bar always says downloading 1 item
    (the file in
    question is the one PNG file I have on teh page) Anyone know
    why this
    happens or how to fix?
    My page is
    http://dev.dosomething.org/
    ... the png file in question is the
    black logo. (I know its in teh wrong place right now, but
    thats a different
    problem)
    Ideas?

    I would duck the whole issue by using a transparent GIF
    "Alexander Ross" <[email protected]> wrote in
    message
    news:edn43j$lm2$[email protected]..
    > I'm using this function
    > (
    http://homepage.ntlworld.com/bobosola/pnghowto.htm)
    to make a png file
    > use alpha transparency proerly in IE. It works great,
    except the page
    > loads forever. The stupid MS logo at the top right keeps
    on animating and
    > the info bar always says downloading 1 item (the file in
    question is the
    > one PNG file I have on teh page) Anyone know why this
    happens or how to
    > fix?
    >
    > My page is
    http://dev.dosomething.org/
    ... the png file in question is the
    > black logo. (I know its in teh wrong place right now,
    but thats a
    > different problem)
    >
    > Ideas?
    >

  • Pages loading - but 'loading' icon no longer spins

    I've just noticed that the loading icon (in the address bar) is no longer spinning when a page is loading, in Safari 4.0.5. Pages load OK, and - it seems - no slower than usual, but what happened to the spinning progress cog? Resetting Safari makes no difference. Anyone else noticed the same thing?

    HI,
    That feature is no longer available in Safari but from the Safari Menu Bar click View/Show Status Bar.
    You can see the page loading activity there. (Bottom of the Safari window). Or, again from the Menu Bar click Window/Activity
    Carolyn

  • Black screen appears before a page loads, but this does not happen in IE

    When a page of a website opens, it displays a black screen and then loads that page in Firefox 3.6.11. But the same does not happen in IE. I don't want that black screen to appear on my page.So please provide me with a solution as soon as possible.
    And my page layout also gets distorted when viewed my firefox but not in IE. Please do the needful.

    Thanks for your reply. I tried the same way but there is no option "Use hardware acceleration when available". Is there any other way out from my code or other Firefox settings as the page loads instantly on IE but on Firefox initially a black screen comes and then the whole page gets loaded. This page is built using java applet. Thanks in advance.

  • I need faster page loads

    Does anyone know how to make pages load faster? My page loads
    incrementally at the moment. The only images on my home page are
    .gifs so I'm wondering why it still comes in choppy when the files
    are so small.

    Just because an image is a GIF doesn't mean it is also
    small....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "s.joyful" <[email protected]> wrote in
    message
    news:eisp7k$ism$[email protected]..
    > Does anyone know how to make pages load faster? My page
    loads
    > incrementally at
    > the moment. The only images on my home page are .gifs so
    I'm wondering
    > why it
    > still comes in choppy when the files are so small.
    >

  • My problem: can't get Google or Facebook to load on Firefox. Something odd. Other pages load, but not those. I go to open: and I get a blank page and tab that says Untitled. Google was my default page. please help me resolve

    A few minutes earlier this morning, I couldn't get Firefox to load any pages. I was led to one page from this process and I disabled under Add-ons in Tools I disabled the only thing I found --a Google toolbox. and I went back. Tried again, now i get other pages, but not google or facebook. Help please.

    Try clearing your cache
    [[Deleting cookies]]
    [[How to clear cache]]
    Also try running in [[Safe Mode]]
    [[Troubleshooting extensions and themes]]

  • Faster Page Loading

    After getting my web page published I had some friends who do web design look at it and they said it loaded slow and the pics were a bit too large, which they thought was slowing it down.
    After talking to some helpful souls here on the Apple Discussion groups, I can see where their sites loaded faster because they used an external web program to design their site. Well, I'm not near so advanced and just learning iWeb.
    How can I get my site to load faster? Re-do all the pics. using ones I have reduced in size before importing?
    Also, is there a way to get rid of the album names that are at the top of each page? Ideally I'd keep a welcome page, then go to a photo intro page where I could have small thumbnails of each pic and have that pic link to the album.
    But there is no reason to do a photo intro page with links if I can't get rid of all the albums listed at the top of each page. They automatically link the name to the next album.
    Here is my first attemp at our family web page:
    http://web.mac.com/allie1254/iWeb/bnsrv/Home.html
    Thanks for any input.
    Allie

    Allie
    I have about 200 pages and 3 Gb of space used up, altering things at this stage is a major headache, so my first tip would be plan your site well.
    I started by creating a site called say 'main', in that site I created my main pages that appear in the nav bar (welcome, photos, movies etc).
    Taking the example of my photos, I created a second site called photosS in to which I created all the pages that load when you choose any of the links in the photo page ( ie photos00-02, photos03-05 etc) I turned off the nav bar in this site
    Then I created a third site called photos00-02 and a fourth site called photos03-05 and so on. In each of these sites I created pages for each photo album associated with that grouping all with the nav bar off.
    I elected to create images and links within the site to navigate, rather than rely on the nav bar (ie return to all photos)
    You create your links through the inspector pallette
    So if I've been reasonably clear you will see:- from my photo page, if you select archives/00-02 you are taken to that page (which lists all my photo albums from 00-02) which resides in the site photosS, if you choose 'my birthday 01' you are taken to that photo album page which resides in the site photos00-02
    make sure all your site and page names are unique and don't contain spaces, there are instances when you get away with not doing, but it's easier to just avoid doing so all together.
    Yes I started with a blank page, well I essentially stripped everything out of a template. Some text boxes won't delete, but the text will.
    Hope this helps, hope you can read and understand what I've said, my eyes don't work so well at this time of night and I can't read much of what I have written.

Maybe you are looking for

  • Stock balance analysis

    Dear, I have a requirement regarding material stock analysis. For example-I have two stores in a plant.I want to see the stocks as well value of stock on a particular date suppose 25/06/2008 for a particular store. -If i will use MC.9,it will show th

  • Changed TV out to off but ipod still only plays audio and no video

    Just recently my ipod decided not to play video. All the videos in the video folders are gone and now appear in the music folder. Even the video podcasts no longer appear in the video podcast folder. I have changed the TV to out to off and still it c

  • How to Shift Multiline Text in a Picture ??

    Hi All, I have written a MultiLine Text in a Picture using "Draw Text at Point" Function. How can I shift (right and left) my first line of the text in the picture without shifting other text lines in the picture ??? Please help it is very IMPORTANT.

  • How to update Asset transactions

    Hi FI Experts, I've been updating a asset by providing values for ANLC table during asset creation. The asset summary is getting updated properly for the fiscal year. I can see them under Planned Value tab.. But Transactions is not updated. Could any

  • The workflow did not arrive in my inbox

    Hello, I created a new planner on 21/10/2011 10:09 and it did not arrive in my inbox. I looked in the log workflow(img) and it said : "You have archived the deadline on 21/10/2011 12:09:22 CET VI. the system has executed the following model action."