jqtouch

JQTouch won't play linked mp3 files

I'm trying to use JQTouch to make a basic mobile site to play a list of audio files. I'm trying to make a simple playlist of tracks to be used in an art exhibit here at school. Sort of like those walking tours you may have seen. When I link to an mp3 file in an unordered list the browser doesn't open the file and start playing it. It sim...

jqtouch and redirecting

Hi, I am using JQTouch and I am trying to load a new page into the current page. Unfortunately JQTouch automatically adds a '#' to the url and thus the url cannot be opened. in order words, <li class="arrow"><a href="categories.html">Categories</a></li> would not work. Any suggestions please? Thanks, C. ...

JQTouch with JSON-Template or any other dynamic HTML generator: indexing child divs

Flat HTML files work fine with JQTouch. JQTouch goes out and indexes all the child divs. The problem is that using JSON-Template to dynamically builds the divs from after a page load, so JQTouch indexing doesn't happen, so navigation between divs doesn't happen. Does anyone have any suggestions? With other JS functions, converting stan...

MobiOne/Jqtouch - SWIPE

Hi, I am not able to simulate the SWIPE event in MobiOne simulator while using Jqtouch. How to use mouse to simulate swipe. Thanks Coool ...

How can I catch the jQTouch animation completion? [solved]

Hi, all! I use jQTouch (and its built-in animations) in developing iPhone version of a website. So, I have a static menu: <ul class="rounded"> <li class="arrow"><a href="#item1" class="fade">Item 1</a></li> <li class="arrow"><a href="#item2" class="fade">Item 2</a></li> <li class="arrow"><a href="#item3" class="fade">Item 3</a><...

Transitions between different HTML pages using JQTouch for iPhone

Hi, I am trying to create a simple iPhone application using HTML/JavaScript/CSS with the help of JQTouch and PhoneGap. For accessing different parts of a web page, the transitions work fine, however when I try to do the same for different web pages, they do not work. I am doing this: <li><a class="slide" href="http://www.flickr.com/p...

jQTouch - Does it support image maps?

I'm working to create a jQTouch prototype and would like to use Image Maps, example: <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" /> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" /> <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" /> ...

jqTouch css and a href link

I am trying to call a link from a page which points to another part of the page. This is the code I am using to do this: <a href="#product"><img src="Dress1.jpg" alt="Pic1"></img></a> The problem is that when I remove the css stylesheet links from the page, in other words: <link type="text/css" rel="stylesheet" media="screen" href="...

Anyone experience timeout of jquery ajax request when using jqtouch the first time a page loads?

I'm building an iPhone web app using jqtouch. I setup an unordered list so that each row, when tapped, generates an ajax request to save the current location so it's associated with data in that row. The $.ajax request times out the first time after the app has loaded. This happens every time when run on the iPhone. It does NOT happe...

Getting swipe direction and speed jQTouch jQuery

I have the following javascript: var jQT = new $.jQTouch({ touchSelector: '#swipeme', fixedViewport: false, fullScreen: false }); $('#swipeme').bind('swipe', function(evt, data) { $('#gallery').css('margin-left',parseInt($('#gallery').css('margin-left'))-10...

jqtouch - no loading image appears

I'm creating a web app using jqtouch and have an ajax link to an external html page. The link works fine when there is internet connectivity, but when the connection is not available, there is no "loading" message. Should this be a default behavior in jqtouch? If so, what could be causing the image to NOT display? Thanks for your help ...

Can I use update panels with jQTouch?

I am using ASP.NET controls to fill in HTML for my jQTouch application, but I am having trouble with my hrefs ceasing to function as intended on my search page. The jQuery function for my anchor class evidently does not get called; it simply links back to the default page, even though the link is built similarly on other pages without an...

Phonegap JQTouch Multiple Page Form - stored info till final POST

What's the easiest way to implement a multi-page form and save the information until the final POST using JQTouch for the Phonegap framework? Basically, I want to create a multiple page form with JQTouch and at the end POST/send all information entered to a PHP page on my server, but am having trouble figuring out the best way to save t...

Rails on iPhone with JQTouch login issues.

Hi Everyone, I have a rails app with a mobile view using jqtouch. If the application is viewed on an iPhone application.mobile.erb loads in place of the default application.HTML.erb. Everything works fine, except the login. Users can login and then view the content. However, they have to login everytime they load the site. Is there a ...

JQTouch form redirect

How might I implement a simple form redirect using JQTouch after hitting "submit"? Thanks! ...

Best article about how to use jQTouch .

I want to use jQTouch on my project, but I can't find many examples. So do you know some website which has many jQTouch examples. Thanks ...

how to make a 'forward' button using jqtouch .

i can make the 'back' button, it only use to add 'back' to the className , but ,how to make a 'forward' button ,that slide right when clicked. thanks like the 'List' in next pic, ...

jquery / jqtouch getJSON call causing infinite loop?

Writing my first JQTouch app. When I go from #login to #home, a JSON ajax call happens successfully but the pageAnimationEnded event appears to be in an infinite loop. $(function(){ $('#login').ajaxComplete(function (e, xhr, settings) { jQT.goTo('#home', 'flip'); }); ...

jQtouch tap and link problem

Hi, I'm having a problem with jQtouch when using tap on links, I'm trying to get a link to change background color when tapped a la iphone appstore (the blue color) so I'm using this code : <script> var jQT = new $.jQTouch({ statusBar: 'black', useFastTouch: true }); $(function(){ $("a").live('tap'...

Populate form by link click before posting with jQuery

Hey, I'm building a small website with JQTouch and the first problem I've run into yet is with a form. I have a form <form action='action.php' class='jqt' id='ajax_post' method='post' name='pform'> (where the name attribute is there when I tried to access it with document.pform)and within it is a ul list of a elements as follows: ...