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?