ajax/libs/jquery/3.5.1/jquery.min.js

ajax/libs/jquery/3.5.1/jquery.min.js

MvuMvu Posts: 5Questions: 1Answers: 0

Is thre a solution for this? On my website I run jquery plugin ddSlick. It runs with ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js. The problem is that on pages wth datatables, the plug-in ddSlick does not work anymore.

Replies

  • kthorngrenkthorngren Posts: 20,142Questions: 26Answers: 4,736

    The problem is that on pages wth datatables, the plug-in ddSlick does not work anymore.

    What happens? Do you get errors?

    Please post a link to your page or a test case showing the problem so we can help debug.
    https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case

    Kevin

  • MvuMvu Posts: 5Questions: 1Answers: 0

    Hi Kevin,
    This the page with the ddSlick/ http://www.mycabinet.be/kthorngren/default.asp
    And this is the same page wit a Datateble scrit:
    http://www.mycabinet.be/kthorngren/default_1.asp
    Thanks for your help.

  • kthorngrenkthorngren Posts: 20,142Questions: 26Answers: 4,736

    The second example is getting this error:

    Uncaught TypeError: $(...).ddslick is not a function

    The first example is getting this error:

    Uncaught Error: Bootstrap's JavaScript requires jQuery

    One problem is you are loading jquery.js twice; once in line 23 and the other in line 28. You should load it only once and it is to be loaded before any of the libraries that require it like bootstrap.js in line 21.

    Kevin

  • MvuMvu Posts: 5Questions: 1Answers: 0

    HI Kevin, you are right. Moreover, I noticed there was a third call at the foot of the page ! Thnaks for your help.DataTables is just terrific !

This discussion has been closed.