cusspvz
cusspvz

Reputation: 5281

Why jQuery UI Sortable isn't working?

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

Answers (3)

dst
dst

Reputation: 1788

I encountered two problems:

  • the comment after <!--[if IE 6]> ends the conditional comment! So the JS-code will be evaluated in other browsers than IE6 too!
  • JqBrowser plugin conflicts somehow with the sortable plugin

Upvotes: 1

cusspvz
cusspvz

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

Nick Craver
Nick Craver

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

Related Questions