HTML5 (HyperText Markup Language, version 5) is the latest iteration of HTML. It introduces new elements and APIs including semantic structural elements such as and . Work on an update, called HTML5.1, is underway.
0
votes
0answers
7 views
replace HTML5 file input with file from local web server filesystem
I'm trying to port a HTML5 app to work from files that are local to the server (running apache) that is hosting the application. Unfortunately, the HTML5 app (http://gcode.ws/) is written in a way ...
0
votes
2answers
13 views
DIV background disappearing when child image is positioned absolute
I'm trying to make a Joomla template and I have a strange problem with my HTML and CSS code. I have a footer with some Text an Joomla module and an img. When I try to bring the image to the right side ...
0
votes
0answers
7 views
How to use 'TouchStart' events in Jquery Mobile
In Html5:- in footer it will store the data which is cuming dynamically and footer part should move by touch not whole window only footer should move with the data is present in footer left to right
...
1
vote
0answers
3 views
Library for universal XML parser app
I have developed a simple HTML 5 app that parses a list of products in XML form and displays the data.
I would like to extend the app to work with any valid XML input and create a web based UI to ...
0
votes
0answers
18 views
:hover won't trigger because bounding box is in the way
Here is my problem:
I am trying to create a circular tab behind a circular image and change the opacity when you hover over the tab.
The problem is, because the bounding box on the circular image is ...
0
votes
2answers
34 views
JQuery dropdown list selected item
I have a jquery drop down menu for small screens. I use the following code for that.
$("<select />").appendTo("nav");
// Create default option "Go to..."
$("<option />", {
...
0
votes
0answers
9 views
What is the best way to communicate with a WebSocket server from Flash?
Are there stable WebSocket protocol implementations in AS3 that can use Flash-sockets, or would it be best to rely on the HTML5 WebSocket class and just use ExternalInterface to marshal the ...
0
votes
0answers
5 views
Get variable from Sencha Touch Ext.data.JSONP.request response
I'm trying to get a boolean (success) and a HTML string (result) from the response to an Ext.data.JsonP.request, but I can't fgure out how. Here's the code I have so far:
Ext.data.JsonP.request({
...
0
votes
0answers
11 views
How to add an automatic reminder from phonegap application
I am developing an phone gap-androidg app and i want to add a predefined reminder through the application .Where reminder must be predefined by me.
Something like "you have 2 days more to return the ...
-1
votes
0answers
17 views
Is there a library that I can use in java or html5 for making real-time poseable characters? [on hold]
I would like to place a 3d human figure online that can be posed by clicking on the figure's joints and dragging them. For example, the human's hand can be dragged by clicking on it and reaching ...
0
votes
0answers
11 views
Element style not allowed as child of element p in this context
I'm working on a Joomla template site and I'm getting 3 errors when I use the html 5 validator tool on W3C. The errors are in the following code that is from my templates index.php.
Element style not ...
0
votes
0answers
13 views
Jquery datatable alignment issue - Firefox
I have datatable in popup window(dialog).This datatable values getting from search button.So each button click the table getting lesser width in firefox, but IE working good. Please advise how to fix ...
0
votes
1answer
14 views
Adding placholder attribute to Magento CMS page
I am having trouble to add the placeholder attribute to the input elements in a CMS page of Magento. Something like this:
<input type="text" placeholder="Hello" />
I proceed to save the CMS ...
0
votes
0answers
16 views
Mp3 without mp3 extension not playing on iphone
The following fiddle works on my pc but not on my iphone:
http://jsfiddle.net/t4j7a/
The player src is being set to something of the form:
...
0
votes
0answers
5 views
HTML5 Detect Entering Fullscreen
I cannot seem to figure out how to bring an element into the fullscreen mode upon video entering the fullscreen mode. I tried looking through the various materials available but still the answer ...