e.bind('swipeleft swiperight',function(event){
//....
};
changing this to a live() fixed it
e.live('swipeleft swiperight',function(event){
//....
};
the bind event will only attach to elements already rendered in the dom, so somehow i guess it gets bound twice
Geen opmerkingen:
Een reactie posten