Thanks for the info.. i will do some poking around.
Like i said.. i knew it was something silly that i was missing. :)
Thanks for pointing me in the right direction..

On Jan 31, 7:19 pm, "Richard D. Worth" <rdwo...@gmail.com> wrote:
> Sounds like you are using incompatible versions of jQuery and jQuery UI.
> jQuery UI 1.5.3 through 1.6rc4 are only compatible with jQuery 1.2.6. In
> order to use jQueryu UI with jQuery 1.3+, you'll need the latest preview
> release, jQuery UI 1.6rc6.
>
> Also note: there is a dedicated mailing list for jQuery UI
>
> http://groups.google.com/group/jquery-ui
>
> should you have any further questions. Thanks
>
> - Richard
>
> On Sat, Jan 31, 2009 at 6:13 PM, cartic <cnat...@gmail.com> wrote:
>
> > OK.. Here is the problem. I have downloaded the UI slider from Jquery
> > website. The slider shows up fine. The slider moves fine.. BUT.. none
> > of the callbacks are being called. i have searched high and low for
> > this but oculd not find anything.
>
> > Here is the code that i use
> >        <script src="js/jquery/jquery-1.3.1.js" type="text/javascript"></
> > script>
> >        <script src="js/jquery/ui_core_slider.js" type="text/javascript"></
> > script>
> >        <script type="text/javascript">
> >                $(document).ready(function(){
> >                        $('#slider_callout').hide();
> >                        $('#slider1_bar').slider({
> >                                handle: '.slider_handle',
> >                                stop: function (e, ui) {
> >                                        console.log( "stopped" );
> >                                }
> >                        });
> >                });
> >        </script>
> > <!--- OTHER HTML HERE --->
> >                <div class='slider_bar' id="slider1_bar">
> >                        <div id="slider_callout"></div>
> >                        <div id='slider1_handle'
> > class='slider_handle'></div>
> >                </div>
>
> > Thanks
> > Cartic

Reply via email to