Tagged Questions
0
votes
2answers
11 views
Different Image Served per Device Basis
I am getting into creating mobile device friendly websites and apps.
I am using bootstrap and HTML5 so I am fine with rearranging my layouts.
My question is, is what is the best way to resize images ...
0
votes
0answers
16 views
How to make iPad HTML5 date default to blank/empty when using next button
The iPad defaults to today when an input type="date" gets focus (due to next/previous buttons and I presume tab/shift-tab using bluetooth keyboard) e.g. test using http://jsbin.com/etovur/1
Question: ...
1
vote
1answer
25 views
Is there a way to prevent device sleeping in a iOS HTML5 web app?
Hi I want to know if there is a way with js or sth else that can prevent device go to sleep in a iOS web app.
0
votes
0answers
13 views
Move from one select list to another but iPad compatible, plugin suggestions?
Does anyone has a good suggestion of plugins for moving elements from one select list to another select list, transferable back and forth, but should be compatible on iPad as well? Similar to ...
0
votes
0answers
22 views
iPad web app: How to trigger full screen video on first play?
I embedded a video which needs to play full screen on click.
I was able to bind the full screen instruction to the play button of the controls, but not to the play button which is shown first.
Which ...
0
votes
0answers
21 views
How to display full screen pdf as default in safari on ipad using html5.?
I am writing a template for viewing pdf on safari on ipad in Django. I want to display the pdf in full screen view or fit width,but margins are coming on both left and right side of pdf container. I ...
0
votes
1answer
22 views
HTML5 Video dimensions in Safari IOS
I'm building a website for a client who's majority of content is video. I'm using the HTML5 video element to display the content but have problems when it comes to Safari on iOS.
Safari on iOS does ...
0
votes
0answers
18 views
HTML5SQL running on Ipad: Insert multiple rows hang after increase the size of database popup raises
This problem only happens when running the html5 application on Ipad.
I am trying to insert 3000 rows within a html5sql.process call. (html5sql is a light JavaScript makes easy the SEQUENTIAL ...
0
votes
1answer
40 views
Processing.js canvas with some divs over it not working on iPad
I am building a webpage with a fullscreen background built with Processing that is being executed on a fixed positioned fullscreen html5 canvas. On top of this canvas I'm positioning some divs which ...
0
votes
1answer
49 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
1answer
49 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
56 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
63 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
0answers
24 views
iPad streaming mp4 sometimes streams as AUDIO
I am streaming an mp4 on an iPad (EDIT: same issue happens on both iPad1 and iPad2) and while it is loading, it sometimes loads as an audio file and streams audio but no video.
It doesn't happen ...
1
vote
0answers
71 views
Offline Web App, Application Cache, Ipad iOS6, and HTTPS, HTML5
I am writing a web application that is meant to me utilized "sometimes" offline using the iPad's home bookmarked feature of Safari . By "sometimes", I mean that the app should work if the iPad is ...