Swipe Unable To Work With Wix

Swipe Unable To Work With Wix

Hey guys!

I'm having a real hard time adding swipe support to this site:  http://alteredorange.ipower.com/iPad/widthtest.html  I used the wix.com's what you see is what you get html5 editor to get the code, but the code it outputs is pretty wonky as you can see... I've finally managed to add jquery mobile into the site, but am unable to add swipe support.  I'm using the function:

  1. <script type="text/javascript" src="jquerymobile.js">
  2. $(function() {
  3. $('#swipe').bind('swiperight', function(event, ui) { 
  4. //Action that will occur when the swipe 
  5.       $.mobile.changePage("www.google.com", "slide");
  6. });
  7. });
  8. </script>
I'm adding class="swipe" to pretty much every element to try and get it to swipe the whole page (using an ipad to test swipe capability, i.e. i should swipe and it should go to www.google.com).   Any ideas??