1
vote
0answers
30 views
JQuery Player - Doesn't work on Chrome
I am using a music player written in Jquery which I converted it into a radio player.
The problem is It doesn't work on google chrome
In my index.php file, (written in html5 also) I have created ...
0
votes
1answer
18 views
Chrome and div background layers not loading properly
This is a very weird thing that i've experienced . I've been working on a project lately www.bandness.com, which allows music groups and bands to upload their music. The artistic department has been ...
1
vote
0answers
13 views
Audio problems in Chrome
I'm trying to develop an HTML5 game. To this end I have the PHP built-in server running on my local machine to work on, then I "compile" it (combine/minify JS files, minify CSS, etc) and upload them ...
1
vote
1answer
37 views
Best way to include data (that will populate IndexedDB) with offline HTML5 app?
I'm building an offline HTML5 app (it will be delivered as a zipped up .crx file). It will be installed and used entirely offline. At no point will there be internet access.
AFAIK, there is no way to ...
0
votes
0answers
6 views
Where does TEMPORARY file system storage store with chrome?
I am using file system API to save some text into TEMPORARY storage. I use the webkitRequestFileSystem and window.Temporary option, but I don't know where it is stored?
0
votes
0answers
14 views
Chrome No Longer Supports HTML5 Video?
I have a website I was working on for a uni project, and I embedded a video using the HTML5 video tag. The code looks like this:
<video width="400" controls="">
<source ...
1
vote
1answer
44 views
html5 video tag -quality of video different in firefox and chrome
I have the following code:
<div class="span4">
<video poster="assets/img/poster.jpg" controls="controls" width="420" height="420">
<source src="assets/videos/152638831.webm" ...
-1
votes
0answers
19 views
Why doesn't Chrome requires Flash updates anymore? [closed]
It appears like Chrome now comes with built-in flash functionality (which has not required an update from me)...so here goes my question:
Is chrome automatically updating the built in flash support? ...
-1
votes
0answers
26 views
How to implement 'cat' as a client-side web app? [closed]
I'm hoping someone will write this example because it will make a good starting point for implementing file-oriented utilities as web apps. (For example: compilers, format converters, signal ...
-1
votes
1answer
26 views
chrome is not properly rendering pages when extensions are enabled
Our website doesn't display properly in Chrome when TOOLBAR extensions are enabled. To be specific, it displays the content but is not aligned properly. This is a public website and we would want to ...
0
votes
1answer
45 views
Can the code in a .crx chrome app have write access to the files within itself (the crx)?
I have a crx that has a number of files that I want to be able to change over time. For example, it might have this structure:
index.html
js/code.js
images/someimage.png
I want to be able to use ...
1
vote
0answers
17 views
After adding ExtensionInstallSources preference with my URL to Chrome Preferences, still won't allow installing “.crx” packaged app
I added the preference ExtensionInstallSources (as per: http://www.chromium.org/administrators/policy-list-3#ExtensionInstallSources ), it still is not allowing me to install my "app.crx" from my URL. ...
0
votes
1answer
32 views
Why does this filesystem api requestQuota call fail?
I'm writing an HTML5 app to run in Chrome but it will be on the local filesystem (so they'll start it by double-clicking an html file). It is throwing an error when I try to access the filesystem and ...
0
votes
1answer
25 views
Is it possible to include a pre-populated indexedDB or does it need to be populated client-side?
I want to have make an offline app that will have data stored in indexedDB. I want to have that per-populated instead of requiring the javascript to add all that data on first run. Is this possible?
1
vote
0answers
41 views
Using websocket to stream in video tag
I'm trying to stream a (WebM or MP4) video from Node.js to HTML5 using websockets (the websocket library is Socket.IO on both server and client). The browser in use is the latest version of Chrome ...
1
vote
0answers
23 views
Does the storage limit (on IndexedDB or localStorage) apply for local apps running off the computer?
If I write a web app that will run in Chrome or Firefox and uses IndexedDB (or localStorage), but it's not hosted anywhere and instead is run by the user double-clicking a local ".html" file, will the ...
1
vote
1answer
89 views
Knockout.js input type date data binding in Google Chrome
I'm struggling to set a value on the input of type="date" in google chrome: http://jsfiddle.net/ruslans/gNv7H/
<input data-bind="value: dateString" type="date"></input>
var viewModel = {
...
0
votes
0answers
37 views
HTML5 video controls - Cannot play after pause in chrome only
Hiya I was hoping for some help if possible please. I have an HTML5 video that is acting strange when viewed in chrome.
When the user hits play for the first time, the video plays.
If they click ...
0
votes
3answers
64 views
+100
Blinking/flickering of website text (text disappearing for moment then reappearing) on iPad and Chrome
If you visit http://www.tekiki.com on the iPad using Chrome, the site renders fine at first, but after a second or two, all text on the page gets hidden and re-appears a few moments later. It is ...
0
votes
2answers
39 views
Google Chrome wont show font (css3, html5) first time visiting. (only on refresh)
I have a website using CSS3
@font-face {
font-family: 'LigatureSymbols';
src: url('LigatureSymbols-2.07.eot');
src: url('LigatureSymbols-2.07.eot?#iefix') format('embedded-opentype'),
...
0
votes
1answer
30 views
Issue with HTML5 Notification and permission
I'm trying to use the new HTML notification API...
I'm still stuck in the request authorization phase;
when user click on a button it's executed the function:
// this is all inside a click handler
...
0
votes
1answer
63 views
Add a Border Radius to <video> tag in Chrome
I've seen this question pop up a couple of times without any clear resolution.
I'm loading a simple video
<video src="" controls></video>
Onto my page. The video works and plays well ...
1
vote
1answer
34 views
Package Chrome browser into a HTML5 Android app
We're developing several HTML5 apps based on the Sencha framework, and thinking about packaging them into apps with say PhoneGap.
However, even if you package these into apps, I'm assuming you still ...
-2
votes
0answers
23 views
Is there any mobile browser support input tag with voice input? [closed]
Is there any mobile browser support voice input tag with x-webkit-speech attribute or other feature that can capture voice input?
I found chrome on PC support this attribute.But once in chrome for ...
0
votes
0answers
25 views
Webkit or W3C Notifications in Chrome for Android?
I'am trying to use html5 notifications for a web app.
It's working in Chrome 26 (on OSX) with both webkitNotifications and Notification (W3C).
I've read that webkitNotifications is also supported in ...
1
vote
2answers
94 views
behavior of iframe contentDocument in chrome and firefox
Here is my testing.html:
<html>
<meta charset="utf-8">
<script>
window.onload = function() {
var a = document.getElementById("divid");
var ifr = ...
0
votes
2answers
34 views
Multiple image file input in HTML5
Selecting one image file as follows works:
<input type="file" accept="image/*" id="files" name="files" />
Selecting multiple image files does not as it displays all the files in the ...
0
votes
0answers
61 views
html 5 video is not working in Chrome
I have coded my html according to a variety of sites declaring how to do so. My video works in Safari and Firefox but won't work in Chrome. However my chrome browser does play video for html as I have ...
0
votes
2answers
50 views
IndexedDB DOM IDBDatabase Exception 11 even after using oncomplete
I am very new to IndexedDB Concepts. I am trying to Store a list of movies in the IndexedDB and retrieve it. But for some reason when i try to retrieve it there is a DOM IDBDatabase Exception 11 in ...
0
votes
0answers
102 views
Poor performance in Chrome running HTML5 Video
I'm a little confused by this one. A similar question was posted here:
How to deal with poor HTML5 video performance in Chrome?
but no satisfactory resolution seems to have come of it.
The long ...
0
votes
0answers
62 views
Is there a good way to buffer large video files with media elements js player in Chrome?
I'm being forced to use rather large videos within an html 5 video player and I can't seen ti get the buffering to work while playing in Chrome on both a Mac and PC.
The player buffers great in ...
1
vote
1answer
58 views
Knockout observable subscribe doesn't recognize a change with date input in google Chrome
Weird issue with Knockout.js whereas it won't recognize the date has been selected after reset, but only with the same date.
To replicate in my jsFiddle: http://jsfiddle.net/V5JCq/ follow these ...
0
votes
0answers
79 views
JavaScript save text to file with spaces
JavaScript
function saveTextAsFile()
{
var textToWrite = document.getElementById('out').innerHTML;
var textFileAsBlob = new Blob([textToWrite], {type:'text/plain'});
var fileNameToSaveAs ...
-2
votes
2answers
76 views
How to click save as button when downloading a file?
When clicking on a link for example:
<a href="1.txt">Download</a>
a save as window will pop up. Is it possible to use JavaScript to click buttons on the window? Or, can a call back ...
2
votes
1answer
77 views
Background/element goes black when entering Fullscreen with HTML5
I'm using the following script to make my web app go fullscreen...
function enterFullscreen(){
var element = document.getElementById('container');
if (element.mozRequestFullScreen) {
...
0
votes
1answer
37 views
Uncaught TypeError: Object #<asteroid> has no method 'display'
its all in one file
its the start of a html5/javascript canvas game
it seems everyones solotion is linking libraries better (this is all one file)
or adding new when creating the object (which I ...
2
votes
7answers
126 views
+100
One pixel displacement of footer image on mobile browsers?
The footer on our website is displaced by 1px on mobile browsers, and we don't understand why.
Here's a screen shot of what it looks like on the iPad. The 1px green line at the top of the footer ...
0
votes
1answer
37 views
Prevent status = failed in chrome while loading multiple html5 videos
I am loading multiple html5 video elements onto a page in webm format. I intermittently receive status failed errors for the videos in which playback stops. Has anyone encountered this issue? and ...
-1
votes
0answers
36 views
html5 js game, browser crashing issue
I am developing html5 powerpoint like slide show using kinetick js framework, I am playing videos one after another on pressing of previous or next keys,
When i play game it works fine upto 10 ...
3
votes
1answer
264 views
HTML5 video element request stay pending forever (on chrome)
I have a weird issue in Chrome.
Each time I load a <video> element, chrome will start two HTTP request.
The first one will stay pending forever (I guess this is the "meta-data", "partial ...
3
votes
1answer
122 views
Programmatically make datalist of input[type=url] appear with JavaScript
In Chrome and as for now the Datalist only appears when typing or double clicking on the input element, e.g. http://jsfiddle.net/r7Y4v/
I'm trying to make the datalist appear sooner. Ideally I would ...
4
votes
1answer
88 views
How is this element manipulation implemented?
In Google Chrome, you can use shortcuts for elements with contenteditable='true':
CTRL + B : Set the highlighted text to bold, for example
What happens under the hood is, the <b> tag is ...
1
vote
0answers
52 views
To disable css cache of Chrome in iPhone, using django runserver
I'm developing a html5 mobile site, with django as the backend and test server, testing the page in Chrome and Safari in my iPhone.
The problems is, when I changed my css or js files, refreshing ...
0
votes
1answer
56 views
Chrome Extension full page or Chrome Packaged App in browser
I would like to know if there's a way I can create a chrome packaged app or extension in which I can open a fairly complex GUI in the browser (similar to if you visit the settings or extensions pages ...
0
votes
1answer
116 views
Video won't load in Chrome but works in Safari
I need to load a 30sec mp4 video. When I load my HTML in Safari, it works fine everything loads and the video plays; however, when I load my HTML file in Chrome, the video file does not load. I have a ...
0
votes
1answer
122 views
Chrome - not playing multiple videos - network stuck in pending
I have 2 video elements on my test page, like so:
<div id="parent">
<video id="foo" autoplay>
<source src="http://www.quirksmode.org/html5/videos/big_buck_bunny.mp4" ...
2
votes
0answers
72 views
Chrome date field min/max silently “corrects” year
I have an HTML form that includes type=date fields. Each date field has a min/max value set as a basic sanity check since my users like to type into the form (rather than use date pickers) and they ...
3
votes
3answers
51 views
Can I create an element that doesn't turn on scrollbars?
We have floating panels that may be partially in screen. Can the window/body ignore it when it decides if scroll bar needs to show?
We do need scroll bar when other elements go outside of the window, ...
0
votes
2answers
37 views
button clicking in Chrome
I made a button in Firefox and it works great, but in Chrome after clicking the button the text is not moving, therefore there is no button effect on click. I want to fix this for Chrome but still not ...
0
votes
1answer
32 views
remove input focus on Google Chrome
I am working with Firefox and Google Chrome.
On Firefox I have no problems and the focus color is blue.
On Chrome the focus is blue + orange.
How do I remove the orange? It comes as a default ...


