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 8580157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:46:04+00:00 2026-06-11T20:46:04+00:00

When document is ready, there is a button that gets a new class names

  • 0

When document is ready, there is a button that gets a new class names frame1. I want to set another class on this button after two seconds.

$(document).ready(function () { 
    setTimeout(function () {
        $('#button').addClass('frame1')
    }, 2000);
});

I want to add another class ‘frame2’ after two seconds if that is possible?

  • 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-11T20:46:05+00:00Added an answer on June 11, 2026 at 8:46 pm

    If you just want to add a class every coule of seconds until you have no more classes to add, you could use an interval and then clear it when the classes have all been added:

    var group = [ 'whiteFG', 'redBG' ];
    var intvl= setInterval(function(){
        group.length 
            ? $("#foo").addClass(group.pop()) 
            : clearInterval(intvl) ;
    }, 2000);
    

    Fiddle: http://jsfiddle.net/EvXPy/

    Or you could simply iterate over your array of class names and set timeouts from there:

    $(['redBG','whiteFG']).each(function(i,o){
        setTimeout(function(){
            $("#foo").addClass(o);
        }, i * 2000 );
    });​​​​​​​​
    

    Note that the first effect will run immediately since i is equal to the index of 0, meaning the timeout happens instantly. If you want this to be delayed, you can increment i as you see fit before multiplying by 2000.

    Fiddle: http://jsfiddle.net/EvXPy/1/

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

Sidebar

Related Questions

I have read a document that they say: In java there two types of
$(document).ready(function() { chart1 = new Highcharts.Chart({ chart: { renderTo: 'QueryResultsChart', type: 'bar' }, title:
$(document).ready(function(){$([href]).appendTo( Click here ...);}); HTML Code <a href=#> b </a> I want to to
$(document).ready(function () { $(#divHeader)) { $(this).hover(function () { $(this).find('#edit').show(); $(this).find('#spandate').removeClass(datetime); $(this).find('#spandate').addClass(edit); }, function ()
I have a select box that gets generated dynamically. I want to allow users
I'm using AHAH to load a piece of HTML after the document is ready.
I wrote this on a simple ASP.NET page: jQuery(document).ready(function() { jQuery(form).submit(function() { alert(kikoo); return
Here is my code: $(document).ready(function(){ //These variables are for loading more posts var create_ptr
What is the difference between these two functions? 1: $(document).ready(function myfunc() { function dosomething()
I'm using the spreadsheet JSON api on a public read-only document. Is there 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.