i am using Swiper by idangero.us with Jquery Mobile...
Here i am using Scroll Container Swiper for a content slider...
Just facing a lot of problem embedding the code together...
http://jsfiddle.net/keuKu/4/embedded/result/
The scrollbar is not appearing as the one in demo and also the scroll is not sticking to the mark where i leave it...
$(function(){
/* Scroll container: */
var sScroll = $('.swiper-scroll-container').swiper({
scrollContainer : true,
scrollbar : {
container : '.swiper-scrollbar'
}
})
})
Working example: http://jsfiddle.net/Gajotres/B7hwh/
First let me tell you what I have done. Document ready (or its anonymous verion) should not be used with jQuery Mobile because it will not trigger correctly during page initialization. Usually it is not a problem but here it is.
Because you need it to initialize inside a certain page I have removed document ready and replaced it with a correct page event. I have also wrapped your code into HTML and BODY tags, I can't make page events work in jsFiddle without it.
Another change, because pageshow triggers each time page is revisited I have used if to check if swiper has already applied its code. I couldn't use other page events because swiper need correct page width and height and those info can only be successfully calculated during the pageshow event.
Working example: http://jsfiddle.net/Gajotres/B7hwh/
HTML :
Javascript :
CSS :