Sortable not working in IE11
Hi there,
i have a problem with a draggable table of mine. I want to be able to drag the <tr>s. Everything works fine on Chrome but IE11 gives me the error
- Object does not support the property or method "sortable"
Basically the html looks like this
- <table class="standardTable" id="agendaPreviewTable">
- <thead id="agendaPreviewHead">....</thead>
- <tbody id="agendaPreviewBody" class="ui-sortable">
- <tr class="ui-sortable-handle" style="display: table-row;"></tr>
- <tr class="ui-sortable-handle"><td class="idCell"></tr>
- </tbody>
- </table>
And my jQuery like this
- $('#agendaPreviewBody').sortable({
- items: "tr",
- appendTo: "parent",
- helper: "clone"
- }).disableSelection();
I have to admit I haven't worked with draggable content so far and maybe I'm doing something very basic wrong here but all my research so far didn't give me an answer. I'd be greatful for some help.
Thanks in advance and
Greetings Chris