Open In App

Price Range Slider with Min-Max Input using HTML CSS and JavaScript

Last Updated : 19 Mar, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
News Follow

In this article, we are going to implement Price Range Slider using HTML, CSS, & JavaScript. Here, The user can move the meter on a price range slider to choose the suitable price range. To choose the right price range, the user can use a slider or input the minimum and maximum price values. We will be using HTML to structure our project, CSS for designing purposes and JavaScript will be used to provide the required functionality.

Preview

Screenshot-2023-11-01-142536

Prerequisites

Approach

  • Create the structure of this project using HTML tags, like <div>, <h2> for the heading, <p> to display the Instructions, HTML input tags to enter a required range, and also give a Class name to each div.
  • Style the structure with CSS using classes and elements.
  • In JavaScript, Select the price range slider element using the document method querySelector().
  • Add eventListeners to price and range input elements.
  • Handle price input changes:
    • Update slider and input values based on conditions.
  • Handle range input changes:
    • Adjust input values to meet the price gap or update price input values and slider positions.

Example: This example describes the basic implementation of the Price Range Slider with Min-Max Input using HTML, CSS, and JavaScript.

HTML
<!-- index.html -->
<html>
<head>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="main">
        <div class="gfg">
            <p>GeeksForGeeks</p>
        </div>
        <div class="custom-wrapper">
            <div class="header">
                <h2 class="projtitle">Price Range Slider</h2>
            </div>
            <div class="price-input-container">
                <div class="price-input">
                    <div class="price-field">
                        <span>Minimum Price</span>
                        <input type="number" class="min-input" value="2500">
                    </div>
                    <div class="price-field">
                        <span>Maximum Price</span>
                        <input type="number" class="max-input" value="8500">
                    </div>
                </div>
                <div class="slider">
                    <div class="price-slider"></div>
                </div>
            </div>

            <!-- Slider -->
            <div class="range-input">
                <input type="range" class="min-range" min="0" max="10000" value="2500" step="1">
                <input type="range" class="max-range" min="0" max="10000" value="8500" step="1">
            </div>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>
CSS JavaScript

Output


Similar Reads

three90RightbarBannerImg