vote up 1 vote down star

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://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" type="text/css"> 

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script> 
<script src="http://jqueryui.com/latest/ui/ui.core.js" type="text/javascript"></script> 
<script src="http://jqueryui.com/latest/ui/ui.slider.js" type="text/javascript"></script> 

<body>

<div id="slider"></div>

<script type="text/javascript">

$().ready(function()
{
    $('#slider').slider({change: function() { alert(0); }});

    // These don't work
    $('#slider').trigger('change');
    $('#slider').trigger('slidechange');
});
</script>

I would expect this to alert "0" when the page loads

flag

80% accept rate
1  
Why is it that seemingly 95% of the time what the jQuery UI docs say does not work :) ? – karim79 Aug 17 at 16:07

1 Answer

vote up 2 vote down check

Try

$slider = $('#slider');
$slider.slider('option', 'change').call($slider);

Not ideal but gets you working!

alt text

link|flag
Bet you this does the trick, nice screenshot :) – karim79 Aug 17 at 16:50
+1 - voted up also – karim79 Aug 17 at 16:51
Eww ugly :p +1 though 'cause it works. I'll give it a bit longer in case John Resig stops by... – Greg Aug 17 at 17:49
hmm, not sure he will know. Maybe better as a jquery-ui google group post / trac issue. Not sure if they considered this used case? – redsquare Aug 17 at 17:50
I've edited your answer because while it worked for my test script it didn't work for the real one - "this" was coming out wrong. – Greg Aug 18 at 8:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.