jqtouch

jQTouch with PhoneGap on webOS

I'm writing an application in PhoneGap that I want to run on iOS, Android, and webOS. jQTouch plays nice with everything on iOS and Android, but not webOS. Since the webOS Mojo framework is based on Prototype (which uses the $ variable), it's necessary to use jQuery in noConflict mode. I can handle that much. However, the problem is th...

Posting Twitter and Facebook updates from a jQTouch / Phonegap iPhone app

I'm using jQTouch and Phonegap to write a simple iPhone app which i'm planning to release through the App Store. Part of the planned functionality will let the user update their twitter or facebook status with the output of the App (some text, possibly a link). Before I go ahead and start rolling my own solution, are there any JS libra...

Themes for jQTouch

I've been using jQTouch to make an iphone-like website. But, I don't want it to look like a native iPhone app (Since people will be using it on other phones), but I don't really like the included JQT theme. Anyone know any other themes? I've searched long and hard, but can't find any. If worst comes to worse, I guess I could always make ...

Resources & Frameworks for mobile development (iphone,android) using HTML5

I am looking for resources to develop HTML5 apps for iphone primarily. Are their frameworks and tools that I can use to get started? I am looking for: Javascript frameworks that help with UI layout Touch based controls for phones Articles on iphone development, best practices, etc. I searched stackoverflow and was not able to come up...

disabling UIWebView scrolling on navigation bar in jqtouch

Hi, I have an application that is primarily built using jqTouch. Is there a way to disable touch move on the navigation bar? What happens now is, the content is scrolling fine with navigation bar being static, but if user trys to srolll the navigation bar, its allowed. On doing so, it just shows the UIWebView scrolling (dark grey backgr...

Best way to display rss feed using JQTouch and JQuery

I want to develop a JQTouch web app that will display a list of the titles from an rss feed and then display the title and description when the title is tapped. Can someone please suggest a tutorial or resource that could help me? ...

JQTouch transition problem

I have a problem with the jqtouch bottom toolbar. Its a stationary bottom toolbar that is implemented with the iScroll plugin for jqtouch. When I want to switch between a page with a "right" slide transition effect I want to exclude the bottombar from also using the transition effect. The reason for this is because it looks weird when ...

Anchor tags are blank

I'm having a problem where the my anchor tags sometimes aren't displaying their links. This is happening on Mobile Safari on multiple iPhones, and in the iPhone simulator. I'm using jQtouch r147, PhoneGap, and jQuery 1.4.2. I'm generating the data from a database call, and adding anchor tags to a list like this: for(var i=0;i<data.rows...

Animate only one part of the panel instead of the whole screen using JQtouch

Hello, I have a code in which I need to animate (flip) only the top part of the panel if the user clicks on the top or the bottom part of the user clicks on the bottom and leave the other panel stationary. The HTML code: <div id="about"> <div class="toolbar"> <h1>About</h1> <a class="button back" hr...

Hide the URL bar in Android Webkit

This doesn't seem to work in jqTouch or iUI. But I know it's possible because it works on my Droid when I go to deviantart.com . Anyone know how to do it? Thanks! ...

JQTouch AJAX Link / Content wont load into jqtouch

On my index.html file, I have a link to a script: <div id="myList"> <div class="toolbar"> <h1>myList</h1> <a class="back" href="#home">Home</a> </div> <ul class="rounded"> <li class="arrow"><a href="/scripts/lookup.php?id=3294&oid=492">Affiliation</a></li> </ul> I replaced lookup.php...

iphone JS swipe action to load next page.

I hace been looking around on how to make a swipe action with javascript so that it loads $next (the next page). Any ideas? Thanks. ...

How do I sort this JSON object by the languages on the right of each entry?

I am creating an Android app using PhoneGap and jqTouch, and I have a JSON object containing a word along with a language which that word is in. How can I sort this alphabetically, by the column on the right (the language), using Javascript? The end result should be Afrikaans as the first entry and Zulu as the last. var languages = { ...

Using ASP.NET, how can I create an iPhone/Android specific mobile website?

I would like to take our current mobile website and redesign it for iPhone use. All of the code on our website is currently run server-side and is split up in multiple pages, but I would like to get all the client-side features like transition animations and iPhone-like buttons that jQTouch offers. Where should I start? ...

ASP.Net MVC jQtouch iPhone device profile/authentication

Hi, I'm building an asp.net web application for an iphone using jQtouch. How can I read the device serial number from asp.net mvc? ...

Disadvantages in using html/css/javascript with phonegap instead of objective C (iPhone)

Hi, I am not fluent in objective-c and thus have decided to take the "easier" approach and use html/css/javascript instead to design and implement an iPhone application. I would be using PhoneGap to gain as many of the cool features which are available to developers using Objective-C as possible. Would I would like to know is if there a...

Dynamically loaded <script> tag not being used in WebKit browsers

It seems this is a known problem and has been asked several times before here in SO however I do not see anything specific to jQTouch so I thought I would give it a try. jQT will dynamically load pages when a link is clicked. In this page I would like to include something like <script> $.include('javascriptfile.js', function() {alert('...

HTML/CSS/JavaScript using JQTouch and PhoneGap to develop iPhone apps

Hi, I would like to ask if I require a Mac for the entire process of the iPhone app development or simply to test the application and later on convert it into a format accepted by iTunes and then uploaded to the App Store. Thanks a lot ! have a nice day :) C. ...

JQuery Image load fails on MobiOne iPhone simulator

I dynamically update an image on a JQTouch site using the following code: $('#sv_map') .one('load', function() { $(this).fadeIn(); }) .attr('src', imgURL); Got the basics of this from here. sv_map is an image, and imgURL points to a valid, existing JPG file. This code works as exp...

Iphone/Jqtouch Testing without iphone

Hi, I am developing web application using jqtouch. But I don't have iphone/ipod touch. what is the best way to test html generated out of it with jqtouch. Thanks coool ...