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

  • SEARCH
  • Home
  • 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 7967247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:38:42+00:00 2026-06-04T06:38:42+00:00

Possible Duplicate: Jquery:: Ajax powered progress bar? I need to create some kind of

  • 0

Possible Duplicate:
Jquery:: Ajax powered progress bar?

I need to create some kind of countdown

pleas in Html

count = Math.floor((futureDate-today)/1000);

if(count > 0) //move Loading bar by percent  

How can I have the same Loading bar of the code that has the animation of the battery?

Like this demo
and this is my demo code which I used to decrement the counter:

  • 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-04T06:38:43+00:00Added an answer on June 4, 2026 at 6:38 am

    You need a starting date as well in order to have a percentage for the battery. Check this fiddle:
    http://jsfiddle.net/uhGjz/

    <!DOCTYPE html>
    <html>
    <head>
      <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      <title>MyBattery</title>
      <style type='text/css'>
    #bat {
        width:100px;
        height: 30px;
        border: 1px solid;
        position: relative;
    }
    #fill {
        height: 100%;
        background-color: red;
        width: 0%;
    }
      </style>
      <script type='text/javascript' src='http://code.jquery.com/jquery-1.7.1.js'></script>
      <script type='text/javascript'>
    $(function(){
    var now = new Date();
    var today = now.getTime();
    var pastDate = Date.parse("Tue, 1 Jan 2012 00:00:00 GMT");
    var futureDate = Date.parse("Tue, 1 Aug 2012 00:00:00 GMT");
    var count = Math.floor((today-pastDate)/(futureDate-pastDate)*100);
    
    if(count > 0) { //move Loading bar by percent 
        $('#fill').animate({
           width: count+"%"
        }, 1000);
    }
    
    }); 
    </script>
    </head>
    <body>
      <div id="bat"><div id="fill"></div></div>
      <!-- Your own content! -->
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: JQuery ajax cross domain I need to load content from another websites
Possible Duplicate: remove attribute of html tag I have some jQuery in my code
Possible Duplicate: jquery ajax call taking too long or something for some reason this
Possible Duplicate: using jquery $.ajax to call a PHP function I need to call
Possible Duplicate: Passing JavaScript Array To PHP Through JQuery $.ajax I'm trying to pass
Possible Duplicate: How to use Basic Auth and Jquery and Ajax I want to
Possible Duplicate: Using jQuery to compare two arrays I need a Javascript or jQuery
Possible Duplicate: jquery/ajax load new content when available i have a table named news
Possible Duplicate: jQuery: How to stop AJAX function escaping JSON string used to POST
Possible Duplicate: jQuery Ajax always returns “undefined”? I'm trying to come up with a

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.