jquery-ui-slider Questions
3
Solved
I have a slider with the following properties:
an horizontal direction
one handle
a min of 2
a max of 65
My goal is to force the user to choose between only 7 points (for example: "2, 3, 4, 26,...
Charleycharlie asked 1/9, 2011 at 8:19
3
Solved
I have already styled and implemented jQuery UI slider into a project. Though it's responsive, the slider does not respond to being touched and dragged. Instead, you have to touch where you want th...
Pantaloons asked 10/12, 2012 at 20:28
3
Solved
as you may already know I'm new to jQuery, so Code-Improvements not belonging to this theme are still very allowed.
This is my HTML-Code:
<div style="display: inline-block; width: 120px;">
...
Lapith asked 19/4, 2011 at 21:30
6
Solved
I am using the following code for slider
Css and Jquery:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script type="text/javascript" ...
Diaphane asked 25/6, 2013 at 0:58
5
Solved
I am limited to using jQuery 1.4.2 and jQuery ui 1.8.5 (this is not by choice, please do not ask me to upgrade to latest versions). I have created a slider that shows the current value above the sl...
Absorbefacient asked 19/4, 2012 at 9:3
10
I am working on http://gamercity.info/ymusic/.
And I am using UI slider as seek bar.
While the video is played I want to invoke a seekTo(seconds) function if user clicked anywhere on the seek bar. ...
Erving asked 30/5, 2010 at 18:48
4
Solved
Okay, I want to control the volume of an HTML5 element using the jQuery Slider element. I have implemented the slide, but can't figure out how to make the value of the slider take the place of the ...
Carnassial asked 6/3, 2012 at 18:0
12
Solved
How can I trigger a change event on a jQuery UI slider?
I thought it would be
$('#slider').trigger('slidechange');
but that does nothing.
Full example script follows:
<link href="http://j...
Sternlight asked 17/8, 2009 at 16:0
3
Solved
$('#foo').slider({
range: 'min',
min: 0,
max: 1000,
step: 100,
value: 500,
create: function( event, ui) {
var bar = ui.value;
},
//etc...
});
Why is bar undefined and not 500? Is it poss...
Accumbent asked 30/4, 2012 at 18:4
3
Solved
I am using royalslider.
I have this
<a class="rsImg" data-rsDelay="1000" href="image.jpg">
<span>This is caption <b>HTML1</b> text</span>
</a>
this works fi...
Argumentum asked 14/8, 2012 at 18:12
2
Solved
I need a jquery slider with two handles with inputs from two textbox like this http://www.israel-diamonds.com/search/diamonds/default.aspx .Currently i have a single handle slider with input from a...
Lurid asked 28/2, 2012 at 10:13
6
Solved
I used the jQuery UI slider component in my page to set a range of prices.
I can also use their ui.values[] to set and show the new values in other divs.
How can I make to see the new value under ...
Ly asked 14/9, 2011 at 12:0
3
Solved
$("#storlekslider").slider({
range: "max",
min: 0,
max: 1500,
value: 0,
slide: function(event, ui) {
$("#storlek_testet").val(ui.value);
$(ui.value).val($('#storlek_testet').val()...
Furlani asked 9/10, 2012 at 7:53
3
Solved
i've got a problem with updating slider value from code. i have tried
$('#slider').slider('value', newValue);
$('#slider').val(newValue).slider();
$('#slider').val(newValue).slider('refresh');
a...
Hebner asked 25/5, 2011 at 23:6
3
I have a jQuery UI slider on my page and it's sticking up through a dropdown menu.
Is there a way to adjust its z-index or does it need to be the topmost element on the page for some reason?
Faro asked 19/12, 2010 at 4:57
2
Solved
I wang to change Jquery slider range to RTL. I am usign this: http://jqueryui.com/slider/#range
Jquery code:
$(function() {
$( "#slider-range" ).slider({
range: true,
min: 0,
max: 1000000,
...
Philoctetes asked 7/12, 2014 at 10:1
5
Solved
<!-- dirty -->
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.g...
Dumpy asked 17/2, 2012 at 16:15
1
I'm new to Javascript and JQuery, I am trying to use JQuery UI Slider to replace price range dropdown boxes(one for Minimum Price, another for Maximum Price) for one of my sites.
Here is my curren...
Mcginnis asked 20/9, 2011 at 11:54
2
Solved
I was reading the code in the official demo page for slider: http://jqueryui.com/demos/slider/ and I was wondering why an <a> tag is used for handle? Why not a <div>?
<div class="de...
Darius asked 4/4, 2012 at 12:7
1
Solved
I am working on a asp.net C# MVC web application and offers a jquery UI price range filter to filter the products based on selected price range. The resulted products are loaded via Ajax and everyt...
Uralian asked 4/5, 2014 at 6:18
7
Solved
How can I have a jQuery slider that is readonly? One that would display a value but the user wouldn't be allowed to move it?
Thanks
Melee asked 9/6, 2009 at 14:21
2
Solved
I thought the basic syntax for a slider was:
<div id="slider"></div>
$("#slider").slider()
But that doesn't make a visible slider. Inspecting the div element, I see that some stylin...
Polenta asked 10/4, 2012 at 22:25
3
Solved
Can I put text min/max values for jquery ui slider and when scroll to appear digits? Here is an example, the left slider for max value has "no limit" and when you scroll it, appear digits...
Lexeme asked 27/4, 2011 at 9:11
7
I have this simple jQuery UI Slider setup with a range and a two default values that overlap. The entire thing (with a few bells and whistles) can be found in this jsfiddle: http://jsfiddle.net/yij...
Gand asked 21/11, 2010 at 18:23
2
Solved
I am trying to fire an event when a user slides the slider and the value is changed when the sliding stops. As per the jQuery docs, the changeevent would be ideal for this case. So I am trying this...
Diphase asked 19/3, 2013 at 19:40
1 Next >
© 2022 - 2024 — McMap. All rights reserved.