Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9122389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T06:05:36+00:00 2026-06-17T06:05:36+00:00

Hi how do i display the javascript results in a div. the code is

  • 0

Hi how do i display the javascript results in a div. the code is :

<script type='text/javascript'>
COUNTER_START = 40
function tick () {
    if (document.getElementById ('counter').firstChild.data > 0) {
        document.getElementById ('counter').firstChild.data = document.getElementById ('counter').firstChild.data - 1
        setTimeout ('tick()', 1000)
    } else {
        document.getElementById ('counter').firstChild.data = 'done'
    }
}
if (document.getElementById) onload = function () {
    var t = document.createTextNode (COUNTER_START)
    var p = document.createElement ('P')
    p.appendChild (t)
    p.setAttribute ('id', 'counter')

    var body = document.getElementsByTagName ('BODY')[0]
    var firstChild = body.getElementsByTagName ('*')[0]

    body.insertBefore (p, firstChild)
    tick()
}
</script>

i want it to display the coundown counter in this div

<div id="counter"></div>

Thank you 😀

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T06:05:37+00:00Added an answer on June 17, 2026 at 6:05 am

    You can use innerHTML for that:

    document.getElementById("counter").innerHTML = /* ... HTML string here ... */;
    

    You can shorten that script a fair bit: Live Example | Source

    (function() {
    
        var elm = document.getElementById('counter');
        var counter = 40;
    
        tick();
    
        function tick() {
            elm.innerHTML = String(counter);
            --counter;
            if (counter >= 0) {
                setTimeout(tick, 1000); // <=== Note, a function ref, not a string
            }
            else {
                elm = undefined; // Release it as we don't need it anymore
            }
        }
    
    })();
    

    I wasn’t sure what the stuff with the paragraph element was, so I didn’t include that. If it was meant to add the counter element at the beginning of the body (as a p, not a div), then just change

    var elm = document.getElementById('counter');
    

    to

    var elm = document.createElement('p');
    document.body.insertBefore(elm, document.body.firstChild);
    

    Doesn’t even need the id. Live Example | Source

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently I use this code: <script type=text/javascript> $(document).ready(function() { var url = http://openexchangerates.org/latest.json; $.getJSON(url
I have the following code: JS <script type=text/javascript> $(function(){ $('#fgotpwfield').hide(); $('#login_submit').click(function() { $('#form_result').fadeOut('fast'); $('#myccrxlogin
<script type=text/javascript> function submitWindow() { .. // URL, name and attributes window.open('http://isivmwebtest.isolutionsinc.com/ComparativePricing/Content/PriceLookup.aspx','windowNew','width=300, height=300'); return
<script type=text/javascript> $('.Ok').live('click', function () { $(#popUp).dialog(close); $('#mydiv').html(); $.ajax({ url: /HRBankInfo/_Partial, type: Get, datatype:
Where can I find an editor/IDE with the ability to display a JavaScript code
I wrote a simple javascript function to display a progressbar with the help of
I have the following javascript: $('#ge-display').click(function (event) { window.open('/googleearth/ge-display.php','','scrollbars=yes,menubar=no,height=650,width=1000,resizable=yes,toolbar=yes,location=no,status=no'); event.stopPropagation(); return false; }); the
I have this simple Java Script code to display the date. I want to
I am trying to display six images from a javascript array. Running the code
I am using a masonry type code to display Divs on my page, and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.