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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:08:52+00:00 2026-06-17T08:08:52+00:00

When a user slides the jQuery Slider over, it effects each image. How do

  • 0

When a user slides the jQuery Slider over, it effects each image. How do I only get the images pertaining to that slider to change?

I’ve tried:
$(this).closest('img.down') and $(this).siblings('img.down')

$("#slider").slider({
  value:50,
  min: 0,
  max: 100,
  step: 50,
  slide: function( event, ui ) {
    $('img.up, img.down').css('opacity','.4');
    if (ui.value >= 51) {
      $('img.up').css('opacity','.8');
    }
    if (ui.value <= 49) {
      $('img.down').css('opacity','.8');
    }
  }
});

Fiddle here

Thanks guys!

  • 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-17T08:08:53+00:00Added an answer on June 17, 2026 at 8:08 am

    You need to make a change to your markup, you cannot have three items in a page with the same id. You can make it

    class="slider"
    

    Move the initialization of the CSS outside of the function then traverse the markup to get the correct image:

    $('img.up, img.down').css('opacity','.4');
    $(".slider").slider({
      value:50,
      min: 0,
      max: 100,
      step: 50,
      slide: function( event, ui ) {
      if (ui.value == 50) {
          $(this).parent().find('img.up, img.down').css('opacity','.4');
      }
      if (ui.value >= 51) {
          $(this).parent().find('img.up').css('opacity','.8');
      }
      if (ui.value <= 49) {
          $(this).parent().find('img.down').css('opacity','.8');
      }
    }
    });
    

    http://jsfiddle.net/psybJ/9/

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

Sidebar

Related Questions

I have a jQuery slider that requires being slid, but if the user drags
Currently my jQuery slider prevents the user from progressing if the range is 0-0
I'm modifying the jquery ui slider. I have certain stops I want the user
Is there a jQuery-based 360 rotational slider, where the user can grab the end
I'm developing a page that will present the user with a content slider, so
User profile. I have some attributes that have only 2 or 3 options. For
I want to fade a div in with jquery when the user hovers over
I am using a jquery slider to pick a start and end time That
I'm looking for a Jquery gallery plugin that supports dynamic switching of images via
I'm trying to build a slider in jquery as shown in the image below.

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.