I am using Pep.js for kinetic drag on multi-touch, but my drag events are not being registered because when I try to drag an object in the safari, on iOS, window the window itse
Your animation is what is causing the issue.
Well, the class your animation is being applied to.
Remove the class after the animation is done.
setTimeout(function(){
$('#tabViewWindow').removeClass('animated').removeClass('bounceInRight');
}, 1200);
Also, to disable scrolling on the window:
html, body{
overflow:hidden;
}