Reputation: 5281
i'm trying to implement on my page the jQuery UI Sortable plugin, but it isn't working.
Can anyone help me with this error? I think it might be something simple that is escaping me.
the link to preview is: http://jsbin.com/ebixi3
the link to jsbin edit is: http://jsbin.com/ebixi3/edit
Thanks all in advance.
Upvotes: 1
Views: 200
Reputation: 1788
I encountered two problems:
<!--[if IE 6]>
ends the conditional comment! So the JS-code will be evaluated in other browsers than IE6 too!Upvotes: 1
Reputation: 5281
OK, discovered! The plugin JqBrowser (dont know why), is making conflit with jQuery UI Sortable plugin...
Removed this line:
<script type="text/javascript" src="http://ajax.microdual.com/js/jquery.jqbrowser-0.2.0.min.js"></script>
Upvotes: 0
Reputation: 630349
It's one of your other plugins interfering with jQuery UI, here's an updated/working version.
I literally did nothing but remove this plugin to make it work:
<script type="text/javascript" src="http://ajax.microdual.com/js/jquery.jqbrowser-0.2.0.min.js"></script>
Upvotes: 2