0

Here is my webpage http://www.qkiz.pl/wege2/ I was doing all tricks from this question but nothing works. Google Chrome display error in devtools console:

Uncaught TypeError: undefined is not a function

in http://www.qkiz.pl/wege2/templates/wege2/js/karuzela-timing.js

Community
  • 1
  • 1
QkiZ
  • 798
  • 1
  • 8
  • 19

1 Answers1

1

Joomla imports Mootools, thus uses noConflict mode with jQuery.

Try calling the carousel like so:

jQuery(document).ready(function($) {
    $('.carousel').carousel({
      interval: 5000
    });
});
Lodder
  • 19,758
  • 10
  • 59
  • 100
  • Thanks for quick reply :) Adding word 'jQuery' at beginning of script makes it works :) – QkiZ Mar 16 '15 at 12:20