Results 1 to 3 of 3

Thread: Div Loading in Java

  1. #1
    Join Date
    Jan 2008
    Posts
    21
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Unhappy Div Loading in Java

    Hi,

    I am looking for a script which loads a div after counting 10 seconds. It should show the timer. When the Seconds reach to 10 the timer disappears and my div loads up.


    Thanks in advance!

  2. #2
    Join Date
    Jun 2007
    Posts
    543
    Thanks
    3
    Thanked 78 Times in 78 Posts
    Blog Entries
    1

    Default

    Your looking for javascript not java, totally different.
    [Jasme Library (Javascript Motion Effects)] My Site
    /\/\@§†ê® §©®¡þ† /\/\@|{ê®
    There are 10 kinds of people in the world, those that understand binary and those that don't.

  3. #3
    Join Date
    Jan 2008
    Posts
    21
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Yeah Sorry!

    I need in javascript!

    Thanx

    I polished this but i am not happy with it


    <form name="redirect">
    <input type="hidden" name="redirect2">
    </form>
    <div id="down">
    seconds</b></font>
    </center></div>
    <div id="down1"></div>

    <script>
    <!--

    //change below target URL to your own

    //change the second to start counting down from
    var countdownfrom=99

    var currentsecond=document.redirect.redirect2.value=countdownfrom+1
    function countredirect(){
    if (currentsecond!=1){
    currentsecond-=1
    document.getElementById("down").innerHTML = "<center><BR>" + "<b> <font color='FF0000' size='4'> Please Wait " + currentsecond + " seconds. Or Register Free to avoid waiting!</font></b>"
    }
    else
    {
    document.getElementById("down1").innerHTML = unescape("<center><b><font size='2'> </font></b></center><p>");
    document.getElementById("down").innerHTML = '<div align="center"><input type="submit" name="yes" value="Click Here to Download" class="textfield"></div>'
    }
    setTimeout("countredirect()",1000)
    }

    countredirect()
    //-->
    </script>


    thanks again

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
  •