Questions tagged [iphone-web-app]
186 questions
4
votes
0 answers
Fastclick not working when clicking edge of element (iOS)
I'm using Fastclick 0.6.2 from FTLabs, and I'd love for it to work, to remove the 300 ms delay on iOS, but in my application, it detects clicks when I click on the edge of a href block, and nothing happens.
Here's a simple demo page, that has a…

Niclas
- 1,362
- 1
- 11
- 24
3
votes
3 answers
iPhone Web App - Session & Current url lost when call answered
I have a multi-page website that is designed to work as a web-app on an iPhone.
It has the usual:

Peter
- 161
- 3
- 9
3
votes
2 answers
jQuery Mobile: Loading Message not appearing
I have made a web app using jQuery Mobile, jQuery and html. It is basically an rss reader for its site.
$(document).ready(function() {
$('[data-role=button]').click(function() {
var $id = $(this).attr('id');
switch($id)
{
case…

tblakey89
- 656
- 2
- 9
- 18
3
votes
3 answers
iPhone friendly websites with ASP.NET MVC
Are there any resources or guidance out there on how to make iPhone friendly web applications?
In my case specifically, I'd like to use ASP.NET MVC, but since that all runs on the server, I know it'll boil down to just markup/css/javascript…

Joel Martinez
- 46,929
- 26
- 130
- 185
3
votes
4 answers
Prevent Copy image in iOS web application
Is there a way of preventing the menu that appears when you hold down a finger on an image on an iPad or iPhone web application. I am creating a remote control and I use the ontouchstart and ontouchend built in functions to create my "ontouchhold"…

Tono Nam
- 34,064
- 78
- 298
- 470
3
votes
1 answer
Using OpenID on a PhoneGap platform
I am currently developing an application using PhoneGap. My application used OpenID to authenticate a user. After successfully authenticate a user, it should be return back to my application. I have used location.href to redirect the page to a local…

Terris
- 43
- 1
- 4
3
votes
0 answers
Force JQuery Mobile page inside UIWebView to call webViewDidStartLoad
In my iPhone app I've got the following hierarchy:
UITabBarController ->
UINavigationController ->
UIViewController ->
UIWebView
(jQuery Mobile-page)
In the UIViewControllers navigationItem, I've added a button whose…

Manne W
- 1,459
- 4
- 17
- 31
3
votes
1 answer
Google appengine authentication on iPhone web app on the home screen
I'm using Google appengine for developing an web application that is meant to be used on both the browser and iphone. I have purchased a domain name for this application, so that I have a pretty URL. I've used the User API for authentication. This…

Rakesh Pai
- 26,069
- 3
- 25
- 31
3
votes
0 answers
Is it possible to open Facebook share dialog (in Facebook app) from mobile web?
We have similar functionality for Twitter -- linking to "twitter://post?message=Hello" will open the Twitter app (if installed). Is there a similar way to invoke in-facebook-app share dialog via "fb://"?
The reason we'd like to use "fb://" over…

GMV
- 31
- 2
3
votes
1 answer
Memory limitation of web apps on mobile devices?
I have observed that heavy mobile apps tend to crash on mobile devices (be it IOS or Android)
Does web app have a max Memory limitation on mobile devices?
Is it per open tab Or for the overall browser (e.g. for Safari on IOS) ?
If yes, what is the…

copenndthagen
- 49,230
- 102
- 290
- 442
3
votes
1 answer
iOS External Accessory Framework from web app
I'm being called upon to build a web app that interfaces with an iphone accessory. I see that native apps use the ExternalAccessory.framework to access accessory, but so far I'm seeing no indication that this framework is in any way exposed for web…

anthropomo
- 4,100
- 1
- 24
- 39
3
votes
1 answer
Maintaining a PHP session on an iPhone web app
I've just created a web app on my iPhone. I can open it and log in with no problem, but whenever I return to the app it has forgotten my previous session and I have to re-enter my username and password.
There have been a few other questions about…

Max
- 73
- 1
- 3
- 10
3
votes
1 answer
Using GWT RequestFactory on iOS devices
An Android app can use RequestFactories to access data from GWT applications. Thats a very simple and great solution. See http://code.google.com/p/cloud-tasks-io/ for more information.
My Question:
Is there a way to use RequestFactories on iOS…

Sam
- 2,707
- 1
- 23
- 32
3
votes
1 answer
iPhone Web App - Disable body scrolling but allow on all elements within body
I am currently using the following code to disable the html and body from scrolling:
document.ontouchmove = function(event){
event.preventDefault();
}
This works but it disables all native scrolling within the page. I have seen many topics…

2ne
- 5,766
- 9
- 30
- 51
3
votes
1 answer
Automatically testing UIWebView content with Selenium
I have an iPhone application that contains a UIWebView for rendering certain UI aspects. The UIWebView content communicates with the Objective-C side through NSURLRequests. I'd like to test the UIWebView contents with Selenium so it could be…

TuomasR
- 2,296
- 18
- 28