jQuery UI 1.5.3 is only compatible with jQuery 1.2.6. To use jQuery UI with the latest version of jQuery (1.3+) you'll need the latest preview release: 1.6rc6.
- Richard On Wed, Mar 4, 2009 at 7:02 AM, valugi <val...@gmail.com> wrote: > > This code works with 1.2.6 version but not on 1.3.2. The UI library is > the same on both tries. No errors are reported in the firebug console. > > Anybody got any idea? > > > <script src="js/jquery-1.2.6.min.js" type="text/javascript" ></script> > <script src="js/jquery-ui-personalized-1.5.3.js" type="text/ > javascript" ></script> > > <script type="text/javascript"> > $(document).ready( function(){ > $("#test").draggable( > { > start: function( ev, ui){ > $("#response").html("start"); > }, > stop: function( ev, ui){ > $("#response").html("stop"); > } > } > ); > }); > > </script>