Reputation: 71
I am working on the jquery mobile app and i use many pages for it.I move to next page and come back to some page then click is not working perfectly as first time i go to the same page click event working smoothly .so please help me.
Upvotes: 0
Views: 286
Reputation: 2857
I am not very sure if this works.May be this is happening due to rough page transitions. Try turning off all the page transitions of jquery mobile.As it is not very smooth with page transition.
Add this attribute to your anchor tags where you need to navigate. page-transition="none"
Also try the backface-visibility:none;
in css.as given in this link
Update:
Disabling the ajax may help.
Add data-ajax="false"
to your the <div>
of page.
Upvotes: 1