I finally discovered what was happening... The point is that I access the page where the swipeleft/swiperight is used from and index.htm page:
- <a href="swipeusedpage.htm" data-role="button" data-theme="e">GO!</a>
The swipe code is in the <head> section of the swipeusedpage.htm. Due to the AJAX navigation model, this code disapears in the limbo when the page is loaded in the index.htm as a new "page"... That's a problem!
The only solution I can find is using rel="external" to avoid the AJAX navigation... but that's not what I want...
Is there any other solution? What happens with <head> section data for every page? Is that data really lost and useless??? OMG!
Any comments on that will be extremely appreciated...