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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:43:04+00:00 2026-05-12T08:43:04+00:00

I have a div with a background, and I’d like to change the background’s

  • 0

I have a div with a background, and I’d like to change the background’s position on click.

This is my jQuery snippet :

$('#sprite').click(function () {
    $(this).css('backgroundPosition', '-40px');
});

While this is working ok, I’d like to return to the original position with a ‘second’ click, resetting all.

Mmm, is this what’s called a ‘callback’ right?

I tried so with that but it didn’t work :

$('#sprite').click(function () {
    $(this).css('backgroundPosition', '-40px');
},function () {
    $(this).css('backgroundPosition', '40px');
});
  • 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-05-12T08:43:04+00:00Added an answer on May 12, 2026 at 8:43 am

    You should consider using a “toggle” function for this… It’ll allow you to go between 2 different CSS classes… Check out this tutorial here.

    $('#sprite').click(function() {
       $(this).toggle(
          function(){
        $(this).css('backgroundPosition', '40px');
          }, 
          function () {
        $(this).css('backgroundPosition', '-40px');
        });
    });
    

    Another option rather than setting the CSS property directly would be to create a CSS class for your background and simply toggle that class.

    CSS

    <style type="text/css">
        .spritebg { background-position: -40px; }
    </style>
    

    jQuery

    $("#spite").click(function() {
       $(this).toggleClass("spritebg");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have many div's with the same background image and i want change this
i have an div called foo. This is the css for the div: background-color:
I have an anchor tag with some simple CSS: div { background-color: gray; /*
I have a container (div) with a background image. In this div there is
I have a div I want when user clicks on this div the background
I have a div that has background:transparent , along with border . Underneath this
I have something to this effect: #div { background: green; width: 200px; height: 100px;
i have div take css class .headbg01 { background-image: url(../images/header_background01.jpg); border-left: #cccccc 1px solid;
My problem is this: I have div with a background image, the opacity is
I have a div like this: <div class=EventsRollup> <span class=EventsRollupTitle>Health Lecture Events</span> <!--this is

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.