slider

jQuery - animate / slide to height: 100%

Hello, I have a siple code here: $('.aktualita_sipky').toggle(function() { $(this).parent().find('.aktualita_content').animate({ height: "100%", }, 1500 ); }, function() { $(this).parent().find('.aktualita_content').animate({ height: "120px", }, 1500 ); }); Now when I click it as the first 'toggle...

Making "global" hotkeys in WPF

I'm programming an application consisting of three usercontrols in an main window. In one of the usercontrols, there's a slider that needs to be controllable by keyboard input. The left arrow should decrease value, right button increase and so on. I have this work, but only when the slider has focus. If some other control has focus, I c...

How do I stop the jquery UI slider from sliding beyond the gutter.

I am using the jquery-ui slider as a sideways scroll bar, and am having issues with the fact the handle slides beyond the end gutter (it can be seen here if you slide the slider the farthest to the right). I have tried everything I can think of with CSS to try to get the handle to go no further than the gutter, but to no avail. Any sug...

JQuery - CSS ninja help wanted

I'm using the JQuery Slider Control IE 6 looks FUBAR. Screenshot (how it should look) img24.imageshack.us/img24/9786/safarij.png Screenshot (IE6) img99.imageshack.us/img99/3418/ie6o.png What CSS can I use for IE6 to make it look like Firefox/Chrome/Safari? Any CSS ninja magic would be greatly appreciated. ...

jQuery Disable Method - why so transparent?

i have a jQuery slider that i have disabled, and it is almost completly transparent... is there a way to keep it disable, but not so transparent? i looked in ui.core.js and ui.slider.js and could not find a way to adjust the property of the disable method... anyone? ...

How to hide jQuery UI Slider on blur?

I have an image that opens the jQuery UI Slider div on click and allows users to set a value by dragging the handle. What I'm trying to do now is hide that handle when the user clicks anywhere else on the page, but the regular .blur event doesn't seem to work. $("#openPriceToSliderGif").click(function(){ $("#slider-vertical").sh...

Problem with jquey slider in IE6

Hi all I'm developing a web site using drupal cms. I have installed a module called slider module which is used to slide a page with sliding effect, it uses jquery. But it doesn't work in internet explorer 6, it doesn't display anything and no sliding effect. Does anyone know what the problem might be? Thanks ...

Jquery UI Slider - Input a Value and Slider Move to Location

I was wondering if anyone has found a solution or example to actually populating the input box of a slider and having it slide to the appropriate position onBlur() .. Currently, as we all know, it just updates this value with the position you are at. So in some regards, I am trying to reverse the functionality of this amazing slider. On...

Custom iPhone User Interface Component.

Can anyone list custom iPhone UI Components? I know about the Three20 components which are UI and framework. Does anyone know of other similar libraries of UI components for the iPhone. To be even more specific I am looking for a horizontal slider that you can flick and it will continue sliding. Currently Apple has those big wheels (...

Jquery Slider and Toggle

I have a slide show located at staging.asla.org/sustainablesites/secondary.html that uses the easySlider plug-in plus also uses the jQuery Toggle function. Currently when you navigate through the slide show the description stays either shown or hidden. I would like for the navigation of the slide show to control the toggle function in ...

Mootools Slider plugin functions

Hi, I am using mootools to create a CSS skin for the Youtube chromeless player using the javascript API to control playback. I cannot post the code unfortunately. The question I have is a more general one. When using the slider plugin a call to mySlider.set(step) moves the knob to the correct step on the slider but it triggers all of th...

conflict between JQuery slider and iui (iphone)

Im trying to get a slider on an iphone web app, I'm using iui to handle the ui. The slider appears to be causing some kind of conflict with iui.js, when you drag the slider it tries to open another page. However it works fine when you just click on some part of the bar. I thought it was the slide event causing it but this event is trigge...

Slider problem for buttons

I am using slider module for sliding the content page. I want change the "next" and "previous" button. When the slider page is loaded, I want to hide the "previous" button. When I click the "next" button, the "previous" button should display, and when I go to the last slide, the "next" button should hide. How can i do this? I am using ...

How do you change the Track template of a Slider?

I would want to change the track a slider. Is there a way to do this? <Track x:Name="PART_Track" Grid.Row="1"> <Track.DecreaseRepeatButton> <RepeatButton Style="{StaticResource SliderRepeatButtonStyle}" Command="{x:Static Slider.DecreaseLarge}"/> </Track.DecreaseRepeatButton> <Track.IncreaseRepeatButton> <RepeatB...

How to make a continuous scroll with JQuery?

Hi Guys, I have this site I am developing: http://tinyurl.com/l7uzzp - I made the scroller with the following code: $(document).ready(function() { function scrollIt() { $('#featured-brands div#scroll').animate({ marginLeft: "-4550px"}, 85000, "linear").animate({ marginTop: "-223px" }, 2...

jQuery Coda Slider

Hi, recently just tried to jump right into jQuery but found it to be harder than I expected. I was trying to implement the Coda Slider 1.1.1 to my new layout. Somehow my cross-links are not causing the "slide effect" that should appear. The linking is working but without the effect. See for yourself at http://www.origross.net/od/jquery...

Jquery UI Slider - Currently Linear, would like to change formula for display

I am trying to make changes to the JQuery UI Slider. Changing it from linear in its range of number to more formula based. The reason is that we sell diamonds and our range is from .30 carats to 9 carats, however 90% of the buyers want something between .30 to 2, so I would like that range to be the larger part of the slider. Hopefully...

Trouble with the jQuery animate function?

I needed a simple three slides slider, so instead of using a jQ plugin I hand coded it myself. The code works but the animation occurs in 2-3 frames instead of happening in over 20 frames, except when in IE6 & IE7 where it animates perfectly in 20-30 frames. In all the other browsers(IE8, Firefox, Chrome, Safari, Opera) it animates in a ...

Jquery AnythingSlider plugin not working for some strange reason.

I'm extremely frustrated, I can't figure out what I'm doing wrong with this slider. How I have done it looks exactly the same as how the example page does it, except the example page is working, and mine isn't. I know the script is at least running because it creates some extra <li> tags with the class 'cloned', but nothing is moving. F...

Silder MouseLeftButtonDown Doesn't Work?

When trying to use a Slider control I'd like to listen to the MouseLeftButtonDown and MouseLeftButtonUp. I have handlers set up for both events. The MouseLeftButtonUp works as expected. MouseLeftButtonDown is not raised at all. Any ideas why? I've done a bit of googling and it seems that the WPF doesn't fire either. One of the solu...