# Rangeslider

We have used jQueryUI range slider for input range slider inputs.&#x20;

<div align="left"><img src="/files/-LUYrTBFvQjiza8-XZS_" alt=""></div>

#### Step 1

Include jQueryUI stylesheet before atmos theme Stylesheet to make sure it properly overrides the UI according to our needs

```markup
<link rel="stylesheet" href="assets/vendor/jquery-ui/jquery-ui.min.css">
```

#### Step 2

Add jqueryUI JavaScript files if not included already.

```markup
<script src="assets/vendor/jquery-ui/jquery-ui.min.js" type="text/javascript"></script>
```

#### Step 3

Add markup

```markup
<div class="input-slider"></div>
```

#### Step 4

Initialize the plugin

```javascript
 $(".input-slider").slider({
        range: "min",
 });
```

{% embed url="<https://jqueryui.com/slider/>" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.atomui.com/form-elements/rangeslider.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
