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>

Reply via email to