Tagged Questions
0
votes
1answer
23 views
HTML - file upload form does not work with iPad
Uploading files on the IPad is not possible because "Choose file" is grayed out. Is there a workaround to upload files in a iPad browser. I'm using the current chrome for iPad.
my upload code:
...
0
votes
0answers
18 views
Have detected ipad orientation, now need to force it to rotate
I need to force a site on iPad to a) detect orientation and b) when in portrait to force to orient to landscape..
Am using the code which detects the orientation fine but having tried a range of ...
0
votes
0answers
14 views
take a screenshot on ipad using javascript and send it by mail
I am making an app with javascript and I need to make a button to make a screenshot of what I have in the screen and send it by mail as an image (it really doesn't matter what kind of image). The app ...
1
vote
0answers
14 views
Script For Assigning Viewport Meta Parameters, iPhone / iPad Conundrum
I am using a JavaScript snippet to set the content parameters of the viewport meta tag, based on the width of the browser window. The script does almost what it should: it sets the initial scale value ...
1
vote
1answer
33 views
Odd ParseFloat Issue Javascript
I have a strange issue I'm encountering only on the iPad. It seems all other browsers can handle this just fine, but I have a condition similar to this:
if( parseFloat( ...
3
votes
5answers
79 views
using php or javascript to see if it's “my iPad”
Is there an easy way to check via php or javascript whether it's "my iPad". Basically, I'd like to do some mobile testing and hope to use a function:
if (itsMine()){
//do stuff
}
(I know that ...
1
vote
2answers
11 views
Need to have an iPad friendly (html) header file load when detected instead of regular flash header
I have a client that wants to make her website iPad/iPhone friendly. The website has a menu header that is made in flash. I converted the file using Google's Swiffy to a flash_1.html file.
When the ...
1
vote
0answers
32 views
Rich Text Editor for iPad
I am developing an iPad app that contains a Rich Text Editor. I did some research and found an excellent tool called TinyMCE. I am trying to integrate TinyMCE in my app, has anybody succeeded in ...
0
votes
2answers
26 views
How do I debug iPad iOS5 Javascript error using an iPad running iOS6?
A client has notified me that our website is generating an error for iPads running iOS 5 when using Debug Console in Safari. I only have an iPad running iOS 6 which no longer has the debug console, ...
0
votes
2answers
32 views
Wrong casting in ipad safari javascript
I'm using javascript's parseFloat() function for casting input string to float value. But there is a problem in ipad safari.
In pc safari:
var s="5.987"
console.log(parseFloat(s));
The Result is ...
0
votes
0answers
17 views
jquery is not working into the funtion in ipad and android device
Jquery is not working into the function.
all browsers are supported but ipad and android devices is not supported.
how to trigger jquery into function.
how to solve this issue.
...
1
vote
0answers
17 views
Load iframe's popup in the same iframe
I'm writing a web app for tablets, which will connect to my client's project management scheduler software. Their software has a web interface, which I want to put in an iframe.
However, when ...
0
votes
1answer
52 views
How to get dimensions of dynamically inserted video on ipad? JavaScript
I'm dynamically inserting an html5 video tag with unknown dimensions onto a page. I'm getting the dimensions with the loadedmetadata event which works like a charm on all browsers.
However, from what ...
0
votes
0answers
30 views
how to change focus of touchmove without releasing finger in jquery/javascript
i've some images in a div, these png images are draggable and are not rectangular,so when i want to drag an image below the transparent area of the image i've to fetch the event and deliver to the ...
0
votes
0answers
31 views
Video Not Playing on iPad JavaScript
I'm trying to get an html5 video to play inside a modal box. I'm using feature detection to detect what format is supported, then prepending the video to the modal container. Here's the function that ...
0
votes
1answer
53 views
Load and Play playlist.m3u8 to START at a specific time on an iPad?
I've got this piece of code working on FF/IE, but the listener is being ignored when on an iPad. I started with the "canplay" event, but found the loadmetadata event [here][1]. Not sure how else to ...
0
votes
1answer
32 views
iPad portrait / langscape - no iPad recognition with JavaScript
I want to be able to set different viewport meta tags, depending on whether the device is iPad or not, and if it's iPad, whether it's being used in portrait or landscape view.
It should be doable ...
0
votes
1answer
43 views
JavaScript function won't load html pages
I have been struggling with this for two days. This JavaScript should load my home.html page upon load and then my other pages when the links are clicked. Even the home page won't load. It doesn't ...
0
votes
1answer
35 views
jQuery draggable with touch punch - flickering issue
My draggable div becomes draggable on touch devices, but it "flickers" to weird positions when starting to move it. Works like a charm om desktop devices but not on iPad or Android.
Any suggestions ...
0
votes
0answers
22 views
Multiple Instance of HTML5 audio - I need only one to play at any time
I am creating a page specifically for an ipad.
I have 12 audio players on a page. I need only one audio player to play at a time. The code below will work but only after you have started and stopped ...
0
votes
2answers
41 views
Is there anyway to control mute/unmute using javascript in ipad
Need help on controlling audio in ipad using javascript(mute/unmute)..any solution or thought will be helpful..
0
votes
1answer
31 views
Dynamically embed HTML5 video for iPad
What is the correct way to embed HTML5 video dynamically so it works on the iPad? (with plain Javascript)
This isn't working:
<div id="placeholder"><script type="text/javascript" ...
0
votes
0answers
24 views
Zepto - Can't cancel link tap on iPad
I think I must be missing something obvious, but I can't use preventDefault to cancel navigating to a link's href when the link is tapped on an iPad (it works ok on my Android phone though).
I have ...
0
votes
0answers
122 views
Need the web view +pagination
I am using web view and facing one diffculty the in web view and the paginating of web view >Actually I need the incaseing the decreasing the font size of the web view on the pichtouch .
I DONE ...
0
votes
0answers
23 views
iPad browser requires extra tap after appending input
Unsure how to describe this so bear with me:
I have a table inside an iFrame. When you double tap a cell, an input field is drawn on top of the table cell absolutely. Whatever number was in the ...
-3
votes
1answer
64 views
iPad loads 4096x4096 JPG sprite, but not PNG, why? [closed]
According to Apple's Web Content guidlines, the iPad (V4 in my case) should be able to load a 4096x4096 sprite sheet with a size less than 10 MB.
My web app loads the JPG in, but does not load the ...
0
votes
1answer
25 views
AddThis on iPad
I have this AddThis:
<a class="addthis_button addthis_default_style">Share Site</a>
<script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=myid">
...
0
votes
1answer
58 views
Running YouTube video in iOS 6 by clicking JavaScript button
I am creating an iPad app for running YouTube video using IFrame.
I referred to many questions regarding YouTube integration in UIWebView and understand that:
Autoplay is not possible
Apple doesn't ...
0
votes
0answers
9 views
focus highlighted text from uitableview ios
hi,
This is epub reader having html file and displays in uiwebview ios in this i have many pages slide by horizontal using slider or swiping by next or prev..
my doubt is...
I have highlighted text ...
4
votes
0answers
63 views
Upgrading Google Maps javascript v2 to v3 using Business Client IDs
I am using this link for Upgrading Google Maps JavaScript Application v2 To v3. Basically my approach is to get the output from api, parse it and load it using MapKit framework, which i am succeeded ...
0
votes
2answers
54 views
How to Hide iPad bar on page load?
I need to help on how to hide iPad address bar or the whole bar at the top when the page is loaded.
I am developing Customer Management system online based system and need to hide iPad address bar ...
0
votes
0answers
22 views
Javascript: Simulate dropping a DOM element
So I'm trying to help out with making a system have a working drag and drop with an iPad. It's a fairly large system as it is and there's already code to make drag and drop work with a computer.
I've ...
0
votes
0answers
33 views
Why calling jQuery AJAX request with JSONP blocks ui on iPad?
I'm using this next code to perform long polling in my webapp. the server is configured to respond to my requests with data I later parse with onSuccessGetMessages.
function getMessages() {
...
0
votes
0answers
21 views
flowpalyer onFinish is not working
I am trying to play the video in iOS devices when a button clicks. When I click the button "Play me" it automatically plays the video and then return back to the same page. But I need to redirect the ...
0
votes
0answers
64 views
Streaming PDF to iPad in iFrame
We have an issue where we are generating a PDF, then streaming it to a user. This is within a Java system. All of this occurs within an iFrame. It works on PC / Android devices, where it shows as a ...
0
votes
0answers
54 views
Ipad chrome not loading javascript slider correct
The slider works on all browers, minus google chrome for the ipad. It is a 50/50 if it loads it or not, and not sure what could be causing this. For google chrome on the iphone, it works flawlessly.
...
0
votes
1answer
26 views
iPad orientation info gathered from a child object (like Iframe)
I am working on a fullscreen Ad, served through a publisher site that I do not have direct access to. The Ad utilises the tilt information from the iPad to change colours on the Ad. Everything works ...
0
votes
1answer
78 views
HTML Button in iFrame does not work properly on iPad
I have a web application in which I have a div element with an onclick javascript action. This web application works fine on iPads and desktops alike.
When it is launched within an iFrame on an ...
0
votes
2answers
22 views
javascript code to differentiate between ipad and ipad retina?
I'm developing an application for Ipad. So I need to change the image rendering depending upon the devide wheteher it is ipad or ipad-retina . So can anybody tell me how to detect the difference ...
0
votes
0answers
87 views
Optimized HTML/JS/CSS Dashboard for iPad with DnD
I'm currently trying to create a usable HTML/CSS/JS based dashboard that behaves reasonably well on an iPad. The Dashboard will contain several widgets with mainly charts. I started using gridster and ...
1
vote
0answers
32 views
Web App Drops Non-Session Cookies On First Offline App Load
I've created a web app that utilizes cookies for storing app state to allow for the app being opened multiple times and a user's session to persist across it. I'm using a cache.manifest to allow ...
0
votes
1answer
77 views
Javascript audio plays in browser but not on iOS device
I have the following code for playing an audio file from an array
function playSound() {
if(index>=25){
index = 0;
}
document.getElementById("sound").innerHTML=
"<embed ...
0
votes
2answers
55 views
Turn off zooming when in portrait mode
Hello i am using this zoom javascript code to zoom my div depending on the screen size it works perfectly but i would like it so when I set an ipad to portrait mode it stops the zoom script from ...
0
votes
1answer
76 views
volume off does not work in html5 video ipad 2
volume off does not work in html5 video ipad 2.
player = document.getElementById(element_id);
if (player.muted){
player.muted = false;
player.volume = 1;
//player.volume(1);
}else{
...
-1
votes
1answer
72 views
creating csv file in ipad application using javascript [duplicate]
please let me know is it possible in ipad application.
Get the text field data from the html page and save it to my html5 local storage .
Get the data from the local storage and write into a csv ...
-4
votes
1answer
96 views
Create csv file using javascript
can some explain me is there a way to convert the html5 local storage data into a csv file and store it inside ipad.
i have an html page with some text fields. when user click the submit button it is ...
0
votes
1answer
48 views
Treating iPad's `Return` as `Tab`
How can I cause the return key on the iPad's keyboard to behave as the tab key when in an HTML form?
My current solution is this:
$('input[type=text]').keydown(function(e)
{
if (e.keyCode == 13)
...
0
votes
1answer
150 views
window.location.href doesn't work on Ipad
Hi I download a canvas with the following codes locally, however it doesn't work on Ipad. Is there anyway to do this? Thanks.
var img = canvas.toDataURL("image/png").replace("image/png", ...
0
votes
2answers
69 views
How do I prompt iPhone/iPad visitors to install native app?
I've visited a few sites on my iPhone/iPad which have prompted me to install the native app the first time I've visited the site. Is there a standard script somewhere that people use for this or ...
2
votes
0answers
83 views
Html5 video on iPad Swallows Events. Using Vimeo
I have the same issue as this post here. HTML5 Video Element on iPad doesn't fire onclick or touchstart events?
I have forward and back buttons that overlay the video. When the video is playing ...




