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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T22:31:36+00:00 2026-06-02T22:31:36+00:00

I have a button which acts as an indicator, so has two states; pressing

  • 0

I have a button which acts as an indicator, so has two states; pressing it toggles the state, and moves on to the next page.

Pressing the button calls a JavaScript function which handles this.

Having changed a button’s ‘src’ image, using jQuery, I wish for the user to see the image change, pause for a fraction of a second, and only then see the next page displayed.

I am finding that the image does not visibly change until the JavaScript function returns, but this is after the pause, and after the page change. I.e. the browser does not show the page changes until the button’s function has exit.

So I wish to cause the page to repaint in the browser, before the pause.
All the solutions I have tried refresh the page to its state on the server, and any changes I made to it in jQuery are lost.

Is there a way to force the page or button to be repainted, which will honor the changes I made to it in JavaScript/jQuery?

  • 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-02T22:31:41+00:00Added an answer on June 2, 2026 at 10:31 pm
    $("#YourButtonWhichTriggersChanges").click(function() {
        // page repaint code, image change, etc.
    
        setTimeout(function(){
            window.location.reload();
            // use window.location.href = "my/new/url.html";
            // or window.location.replace("my/new/url.html");  
            // to change the page instead of just reloading.
        }, 1000);
    });
    

    Where 1000 is the number of milliseconds you want to wait before refreshing the page.


    Edit: I think you want this code instead:

    $("#ApproveButton").css('backgroundImage', 'url(\'img/but/proof/ApprovePageButton.png\')');
    

    The extra backslashes are in there to escape out the single quotes in the url parameter.


    Another edit: Here’s a combination of the two solutions I supplied which should work:

    $("#ApproveButton").click(function() {
            // actually repaint the button's background image
            $(this).css('backgroundImage', 'url(\'img/but/proof/ApprovePageButton.png\')');
    
            // change the page after 1000 milliseconds have gone by.
            setTimeout(function(){
                window.location.reload();
                /* use window.location.href = "my/new/url.html";
                 * or window.location.replace("my/new/url.html");  
                 * to change the page instead of just reloading.
                 */
            }, 1000);
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a containing div, which acts as a button all by itself... When
I have a UserControl which acts like a basic button control (it is hand
I have a button which is not working when placed below two panels. If
I have a JSF page in which I have a div which acts as
I have a button which is in update panel. When I click on button
I have a button which opens a context menu with a list of various
I have a button which creates a div. Once clicked I would like to
I have a Button which when clicked will execute an addQty method and in
I have this button which is not working correctly for hold button for a
I have a button which when toggled displays/hides a div ('.reportOptions'), this works perfectly

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.