jqtouch

JqTouch - Detect trigger for animation

Yet another problem I'm having w/ jqTouch... I'm trying to detect what element was clicked to trigger an animation so that I can pass parameters from the clicked item to the subsequent page. My HTML is: <div id="places"> <div class="toolbar"> <h1>Places</h1> <a class="back" href="#">Back</a> </div> <ul> <li id="1"><a ...

Want to use opacity setting when displaying divs with animations in JQTouch

Sorry its a bit hard to describe. For a web-based iPhone site. Need Webkit, iPhone or simulator to view. I want to be able to use the native jQTouch animations, but I need to modify the background color and have it be partially transparent. Now i can get this this to work if I write my own custom jQuery code and call that (as it doesn't...

Safari Ajax response size limit?

I am working on an iPhone mobile web app using jqtouch to make it feel more "native". It seems that safari chokes on large Ajax responses. Is there a limit on response size? Firefox is behaving normally and small responses are working just fine. Not sure where to start on this or what tools to use in safari to help troubleshoot. ...

How to require fullscreen mode in a jQTouch application?

I'm using jQTouch to develop a version of a website optimized for safari on the iphone. The jQTouch demo helpfully shows how to show an "install this" message for users not using full screen mode and hide it for those who are. When in fullscreen mode, the body should have the class "fullscreen." So you can hide the "install this" mess...

Iphone Web app development environment setup?

Im working on an iphone web app using JQTouch , im just wondering what is the easiest way on snow leopard to be able to test my local code on my iphone? thanks ...

Loading Separate Pages With Animation in JQTouch

I'm trying to convert a database-driven multiple-choice-style study website (written in JSP) into an iPhone app using JQTouch. If I load all of the Q&As into their own divs in the same file I can easily link and animate between them using links to hashtags, like: a class="button" href="#question22" Unfortunately this isn't practical. T...

Problem using Flot charts on a jQtouch web site

Hiiii I have a jQtouch site in dev and i would like to use a chart on it, to me Flot looks like the best way to do this (prettiest!) However if i implement flot on the site i get the following error: Invalid dimensions for plot, width = 0, height = 0 If i comment out the style sheet ../jqtouch/jqtouch.min.css the flot chart works ju...

JQTouch Pressure Sensitivity

I noticed an interesting bug with the JQTouch platform and wanted to know if anyone else has run into it our has a workaround for it. If I have a link with an onclick event and lightly tap the link on the iPhone, the link works, but the click event is not fired. If I tap the same link harder, the event fires. Any thoughts on this? ...

How to load jqtouch on-demand

I'm trying to load jqtouch on-demand like so: <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $(function() { $.getScript("js/jqtouch.min.js", function() { $.jQTouch(); }); }); </script> Firebug outputs: $(_3c.selector).tap is not a function If I inc...

JQTOUCH, Binding to links pulled in via AJAX, to make another AJAX call? Possible?

Hello. I'm using JQTOUCH using the AJAX example provided in the demo: $('#customers').bind('pageAnimationEnd', function(e, info){ if (!$(this).data('loaded')) { // Make sure the data hasn't already been loaded (we'll set 'loaded' to true a couple lines further down) $('.loadingscreen').css({'display':'bl...

iPhone JQTOUCH - How to build a Contact List with the Alphabet Scroller on the right

I'm using JQTOUCH to build a iPhone web app that includes a contact list just like in the iPhone under Phone > Contacts... This contact list has a vertical alphabet that allows the user to click & jump to the right anchor location in the list. Is there a smart way to do this or plugin already available that would work with JQTOUCH? Th...

Linking to non-home panel in JQTouch site

I'm trying to create a link from an external site that arrives at a particular, internal panel on a JQTouch site I'm building. However the browser always opens the home panel of the JQT site no matter what anchor tag I use in the link. e.g. If I try to link to the User Interface panel in the official JQTouch demo I use http://www.jqtouc...

How to get rid of a JQUERY APPEND GIve the following code...

Given the following lines of code which is using JQTOUCH: $('#customers').bind('pageAnimationEnd', function(e, info){ if (!$(this).data('loaded')) { $('.loadingscreen').css({'display':'block'}); $(this).append($('<div> </div>'). load('/mobile/ajax/customers/ .info', function()...

How to not cache a php file where a cachemanifest is beeing called?

Hi, i'm building a iphone app with jqtouch and i use a cachemanifest to cache all the static files (images, css, javascript) to make it load faster. However the page uses php for the dynamic content and i don't want to cache that. So i'm generating the cachemanifest with this php-script(manifest.php): <?php header('Content-Type: text/c...

JQTOUCH - Anytime loading occurs, add a loading class?

Hi, I'm using JQTOUCH and in JQTOUCH several of the links are being loading via AJAX and then sliding in. The problem is that there is no loading indication provided to users. I'd like a way to add a Loading class with an AJAX spinner, when ever the an ajax call is loading, and have the class removed when the loading is done, and the pa...

Can an iPhone Web App use the Camera?

I have a web app and I want to take photos and then upload them to a server. Can this be done with a webapp? ...

JQTouch android webView configuration

I'm developing an application which is mainly a webview and will display a JQTouch UI. Two of the 3 views work just fine, however, I have a view which loads another page with a form which does not work at all. This view loads up just fine but when I click the link to go to the form the link just stays highlighted and nothing happens. ...

iPhone, JQTouch and HTML5 audio tags

I am having an issue with JQTouch (latest beta) and html5 audio tags on 'sub pages' - the audio tag works before any page transitions are done, and cease to work afterward. For example: http://richardprice.dyndns.ws/test.html and http://richardprice.dyndns.ws/test2.html are identical other than I swap the "current" class between the...

iPhone web dev with jqTouch

Hi there, I am some real trouble getting the transitions working for my iPhone site, I am trying to add the 'flip' transition using, <a class="button flip" href="#about">About</a> However I get no flip transition nor do is navigate to the about anchor, here is my HTML, <!DOCTYPE html> <head> <meta name="viewport" co...

Using Facebook Connect with jQTouch?

Hi, i'm starting a new jQTouch-project now and i'm thinking of using facebook connect to make it easier for users to register with my site. do anyone have any experience with this? I'm using the Facebook PHP SDK (from github), and i first tried to use it with the built in example, it worked good. i later tried it with jQTouch (the lat...