I have a problem with jQuery Skitter Slideshow. It doesn’t work!
I found one error with Element inspector of my browser: Uncaught TypeError: Object [object Object] has no method 'skitter'
The test is here: [obscured]
What is the problem?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hi (ciao) It was a nightmare…but I included step by step all your js files; and found the problem.
Skitter stop working after the including of query.tools.min; the reason is because you’re including jQuery again with it (the new definition erases any plugins, since it re-defined the jquery object).
Here is a working fiddle before: http://jsfiddle.net/IrvinDominin/jV6qy/5/
And the same after the include: http://jsfiddle.net/IrvinDominin/jV6qy/6/
To solve the problem instead of this:
include this:
Here is the final working version: http://jsfiddle.net/IrvinDominin/jV6qy/7/