Topics
Mind Fresher Games
Books Deals
Hot Questions
Hot Answers
New Questions
Ask a Question
Explore
Ask a Question
Programming
How to create a jQuery price Range slider ?
How to create a jQuery price Range slider ?
+1
vote
1.4k
views
asked
in
Programming
by
user8080
(
590
points)
edited
by
Bhartesh
I want a slider which can update price accordingly to slider, I am using php ,html and javascript,jQuery .
So can you send me a script for it which can perform this action. Thanks in advance !
closed
jquery
html
javascript
php
1
Answer
+2
votes
answered
by
amit_pammu
Expert
(
5.1k
points)
selected
by
user8080
Best answer
simple price slider usinjg jquery..!!!
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="
http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css
">
<script src="
http://code.jquery.com/jquery-1.10.2.min.js
"></script>
<script src="
http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js
"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Range Slider</h1>
</div>
<div data-role="main" class="ui-content">
<form method="" action="">
<div data-role="rangeslider">
<label for="price-min">Price:</label>
<input type="range" name="price-min" id="price-min" value="200" min="0" max="1000">
<label for="price-max">Price:</label>
<input type="range" name="price-max" id="price-max" value="800" min="0" max="1000">
</div>
<input type="submit" data-inline="true" value="Submit">
</form>
</div>
</div>
</body>
</html>
0
commented
by
user8080
(
590
points)
thanks! i actually need this code.
0
commented
by
krish
Expert
(
6.4k
points)
Could you please elaborate your question more?
0
commented
by
Bhartesh
(
2.9k
points)
Cool Script ... Helped me also thanks!
Your comment on this answer:
Use comments to reply to other users or notify them of changes. If you are adding new information, edit your post instead of commenting.
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Not a Member yet?
My Account
2477
Folks are online
1436
members and
1041
guest online
Related questions
How to center a paragraph of text on a particular word in HTML, CSS, or JavaScript?
how to get all child nodes in JSON
click event of li in JQuery using Jstree.
How to get node or node value from HTML DOM(Document Object Model).
I want to return the response from AJAX call?
Reset DropDownList Jquery
Can I use PHP extension in a html page?
Export HTML Table Data to Excel in PHP.
Reason behind why body returns false?
How to check a String contains another sub string using JavaScript
JavaScript: Select and Delect all check box on click one check box
How to check a string contains a specific word in php?
How to remove a specific string from array in PHP?
how to link a custom page in WordPress!
how to send email in PDF format on submit a button
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting T_STRING
Personal email validation script.
How to set i-frame video background?
onClick a button redirect to a URL in JAVASCRIPT
How to create and delete a window service from CMD?
Categories
All categories
Software Testing
(48)
Programming
(130)
Interview Questions
(28)
My Career
(1)
Puzzles
(4)
Motor Bikes
(11)
Travel
(9)
Electronics
(1)
Entertainment
(2)
OTHER
(18)
Recent
Popular Questions
Registration and login form in PHP?
Tell me best places to visit during holi in india?
What is the best time to visit and the best way to get to the Taj Mahal?
JavaScript- Open a new tab while focusing on an old tab
What should I know before visiting Jim Corbett National Park?
Tell me best places to visit during holi in india?
What is the best time to visit and the best way to get to the Taj Mahal?
What should I know before visiting Jim Corbett National Park?
How to download COVID vaccination certificate and correct personal details?
How to book Vaccine slot quickly ?
All categories
Software Testing
(48)
Programming
(130)
Interview Questions
(28)
My Career
(1)
Puzzles
(4)
Motor Bikes
(11)
Travel
(9)
Electronics
(1)
Entertainment
(2)
OTHER
(18)
Your feedback is highly appreciated