jqtouch

how can I fix the jumpiness problem on a moving <LI> stream jQTouch mobile web app (iPhone JavaScript)

I've got a mobile Web app built with jQTouch mobile web app framework, but when I try to add dynamic <LI> elements the theme starts jumping around like crazy. Includes a short JavaScript sample program that replicates the issue. I posted this issue on the jqtouch Google Code ticket system Issue 134: slidedown prepends LI but causes th...

jQtouch and jquery loading overlay

I created a mobile app using jQtouch. I need to let my user know when an ajax call is loading after they've pressed a form button. So I want to load a mask and a simple loading gif. I can get it to work on the desktop version of the app with no problem, but on the mobile with the jQtouch framework I can't. I've tried jquery-loadmask ...

jQTouch for iPhone - Quick Troubleshoot?

Could someone with knowledge of jQTouch for the iPhone have a quick look at my source and let me know what the heck I'm doing wrong? Clicking the big green buttons is supposed to reveal that particular section. http://designsnack.com/mobile/ ...

Fixed header in Jqtouch

What should i change in the basic theme of jqtouch to have a fixed header (+ footer maybe...)? I have tried with position:fixed.. but nothing worked... ...

jQTouch loading remote data

I'm using jQTouch which is an implementation of jQuery with some extra stuff for mobile devices. I have a div with id=testinner. When I use this code, it works fine from a local file: $("#testinner").load("test.html"); But if I test with a remote file, nothing loads $("#testinner").load("http://www.google.com"); Anyone have any id...

How can I create a photo slider on iPhone Safari with jQuery?

I'd like to create an product image viewer for an iPhone version of an ecommerce site, and have it behave something like the Photos app. Ideally, you would be able to slide images to move back and forth in the product image gallery. This will all be done in mobile Safari. I did a little experimenting with jqTouch, but its doesn't loo...

jQuery.data() works in Mac OS WebKit, but not on iPhone OS?

I'm playing around with jQTouch for an iPhone OS app that I've been toying with off and on for a while. I wanted to try my hand building it as a web app so I started playing with jQTouch. For reference, here is the page+source (all my code is currently in index.html so you can just "View Source" to see it all): http://rpj.me/doughapp.co...

iWebkit vs. JQTouch vs. iUI

Hello, I am going to develop a content rich application that ideally should have been an iPhone-app, but since I'm short on time, I will stick with technologies that I can, such as JQuery, CSS and HTML. The more mobile devices my site runs on besides iPhone, the better. A brief search on the web leaves me with the impression that there...

Quickest way to make a web app for iPhone

I am looking to make a iPhone app for a simple anonymous discussion website I launched this week (blurba.com). I would like it to be native, available for free download in the app store. I am looking for the fastest, easiest way to do this. I have been looking at these options. 1. Build a native app in Obj-C 2. Build with JQ tou...

jQTouch Spinning Wheel (Cubiq) Implementation Won't Work

I am trying to get a nice Spinning Wheel working within my webapp; http://bit.ly/89oWud However, I keep receiving an error within Mobile Safari that the variable 'blabla' cannot be found. I have implemented both of these suggested solutions: 1# Change SpinningWheelCSS 2# Change JQTouch CSS, JS files, and add JQTouch wrapper to body...

Dynamically resize Inputs

I've got this piece of code for a jQTouch/jQuery page that dynamically resizes inputs to the window's innerWidth - the associated label width - 50px. <html> <head> <title>resizeInputs</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css" media="screen">@import "jqtouch/jqtouch.min.css";</st...

Clear button for form input field using JQuery and JQTouch

I have a site built using JQTouch and want to add the little cross buttons within text input fields to clear out text on press. I've tried emulating Google's technique from their google.com iPhone site. Also I've read about that approach over here http://stackoverflow.com/questions/613114/little-x-in-textfield-input... I have this part...

jQTouch - Cannot paste into input field: have anyone seen this?

Here is the HTML snippet: <input type="text" name="UPCtext" id="UPCtextBar" value="" placeholder="Type UPC number" class="UPCvalue"/> There are no events bind()'s or live()'s associated with this input field. If I remove jQTouch it works as it should, so, have anyone been through this problem? ...

Autocomplete ajax textbox for iphone web app?

Hi everyone, I've developed a rails website in which I've got a text box with autocompletion facilities (When the user starts typing, a list of valid values "drops down" under it). For this, I used Rail's autocomplete. Now I'm developing a mobile version of this site. Since the target browsing phone will be the iphone, I'm using jqtouc...

how to replicate JQtouch smooth iphone animations?

Hi! so, i know how to do this by theory, buy when i try the animation is really laggy. what i"m doing: i got this UL with all sort of items and text (really standard) and when i want to animate it i just add with JS a class "flipout" like so: element.className = "flipout"; the CSS for the animation looks like this: .flipout{ -webkit-...

iphone safari web page switcher thumbnail

What does the iphone (3gs) safari use as the thumbnail displayed when switching between windows? for the page below, built using jqtouch, the page contents disappears when clicking the page switcher. the background remains http://www.maths.manchester.ac.uk/~dszotten/limmud/iphone/ ...

Do I have to duplicate this function? - jQuery

I'm using this function to create an transparent overlay of information over the current div for a web-based mobile app. Background: using jQTouch, so I have separate divs, not individual pages loading new. $(document).ready(function() { $('.infoBtn').click(function() { $('#overlay').toggleFade(400); return false;...

I can't get mailto links to open the Mail app from Mobile Safari when using jQTouch. What could be wrong?

Hi all, I'm developing an iPhone web app using jQTouch, and it contains a simple mailto: link to a valid email address, which should launch the iPhone mail application when tapped—but it doesn't. If I visit a "normal" web page in Mobile Safari which contains the exact same link, and tap on it, I get the expected result: the mail app po...

jQuery & jqTouch - ajax.load problem

I think my problem lies more in my approach and applies more to jquery, but something weird is happening here. I'm using jQuery & jqTouch. My html is: <div id="home" class="current"> <div class="toolbar"> <h1>Header</h1> </div> <ul class="rounded"> <li class="arrow"><a href="#currentloc">Current Location</a>...

jqTouch - Making an image trigger an animation, rather than a <li>

Playing around a bit more with jqTouch and am running into a problem with images that should link to a separate page. My code is <div id="home" class="current"> <div class="toolbar"> <h1>Title</h1> <img src="images/logo.png" /> </div> <div class="images"> <a href="#largeImage"><img src="/images/thumbnail_1.jpg" /></a> <...