I'm trying to add a swipe animation to an element. I've tried initializing jqTouch before the ready handler like this:

var jQT = new $.jQTouch({
    slideSelector:'#navMenu'
});

$(document).ready(function () {
//...
});

But I am getting a TypeError saying that $.jqTouch is undefined. Does anyone know how to solve this?

link|improve this question

1  
It might help if you posted some more of the code (from a web document, I assume). It's possible the problem lies in a missing script (check Web Inspector/Firebug), or bad syntax somewhere outside the JS code. – Mark Jan 27 at 16:48
feedback

1 Answer

up vote 0 down vote accepted

If you're using jQTouch with jQuery, you now need to include two library files: the jQTouch library, and then the jQTouch jQuery bridge file, which essentially bridges jQTouch to use jQuery instead of the default it ships for, Zepto.js.

I always find it funny that the library that is named after (or in the style of) a library, now needs a shim in order to work with jQuery :)

link|improve this answer
@Mattygabe--that is indeed strange. – codeninja Mar 30 at 14:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.