Results 1 to 4 of 4

Thread: javascript delay loading function

  1. #1
    Join Date
    Apr 2009
    Posts
    21

    javascript delay loading function

    I'm trying to delay the loading of a part of the HTML page. Basically, I want to load the part of the body, is delaying 5 seconds oe soon realize the process of loading. I do not want to use the onLoad of the body of the redirect, rather, make a section of the HTML; spear "which was dictated on the screen. please provide me the java script for it......

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Re: javascript delay loading function

    I am providing an example below :

    Code:
    <script ...>
    <!--
    function stub(){};
    </script>
    </head>
    <body>
    ...
    <script src="/scripts/stub.js" type="text/javascript"></script>
    </body>

  3. #3
    Join Date
    Apr 2008
    Posts
    2,005

    Re: javascript delay loading function

    Use the below function to load it 10 seconds from whenever it's called, Hope this will make for you.... :

    Code:
    setTimer('functionFoo()',10);

  4. #4
    Join Date
    May 2008
    Posts
    2,297

    Re: javascript delay loading function

    Below is the example for Setting a Javascript program to wait :

    Code:
    <script language="javascript">
    function pausecomp(millis)
    {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while(curDate-date < millis);
    }
    </script>

Similar Threads

  1. Delay Commercial Loading of Philips Net-TV
    By Dalajit in forum Monitor & Video Cards
    Replies: 4
    Last Post: 18-08-2011, 05:33 AM
  2. Replies: 5
    Last Post: 06-01-2011, 10:17 AM
  3. c# function equivalent to gettime function in javascript
    By Omaar in forum Software Development
    Replies: 4
    Last Post: 10-03-2010, 10:44 PM
  4. JavaScript Sleep Function
    By DARIELLE in forum Software Development
    Replies: 3
    Last Post: 29-06-2009, 09:30 AM
  5. JavaScript function help
    By suseman in forum Software Development
    Replies: 3
    Last Post: 26-05-2009, 05:11 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,261,906.69206 seconds with 17 queries