Resource for backward compatibility in HTML5?
Hi, Are there resources or JS libraries to emulate HTML5 features, if the browser doesn't fully support HTML5. I am specifically looking to target mobile web applications. Thanks, Sri ...
Hi, Are there resources or JS libraries to emulate HTML5 features, if the browser doesn't fully support HTML5. I am specifically looking to target mobile web applications. Thanks, Sri ...
Hi guys, I'm using web workers to do some CPU intensive work but have the requirement that the worker will respond to messages from the parent script while the worker is still processing. The worker however will not respond to messages while it is locked in a processing loop, and I have not found a way to say poll the message queue. ...
This is a cross post. I've already posted the question to flexcoders. We work in flex as a technology. However a potential client has stated that they are worried about the lifespan of flex as a technology. Especially as apple doesn't support it on their mobile devices, and the increasing support for HTML5 within browsers. What I would...
CSS display: inline-block and width: 100% does not work on IE6 and IE7. Does anyone have some solution? Thanks! <style> nav {text-align: justify;} nav li {display: inline-block; white-space: nowrap;} nav span {display: inline-block; width: 100%;} </style> ... <nav> <ul> <li>Home Page</li> <li>Services</li> <li>Clients</li>...
Is there any JavaScript Library that makes CSS3/HTML5 website fully work on all browsers, including IE6-8? Latest eCSStener and Modernizr does not make CSS3 work on IE6-8. ...
Hi everyone, I'm trying to accurately detect when the browser goes offline, using the HTML5 online and offline events. Here's my code: <script> // FIREFOX $(window).bind("online", applicationBackOnline); $(window).bind("offline", applicationOffline); //IE window.onload = function() { document.body.ononlin...
I'm (still) porting an old Macintosh game to HTML5 and JavaScript. The game is a Tempest clone. (Wikipedia article on Tempest) (Shameless pimp of my project) While it's certainly possible to implement controls using the keyboard, I'm also wondering if it's possible to make relative mouse movement work in HTML5. The typical ways that I'...
I'm writing an offline app for mobile safari. I have just gotten to the point where it will create the app icon on the home screen and function offline. Now I want to update the html in my app, but it refuses to refresh. I've tryed the refresh button, the "clear cache" settings option, I have even taken down the server but safari still s...
Possible Duplicate: Chaining a function in JavaScript? I asked a similar question, but a lot of people were confused and a lot of comments that made no sense (like someone commented jQuery overload... and this has nothing to do with jQuery). So here's my question, how do I add to the HTML5 localStorage object and make a custo...
I'm not sure if I'm using incorrect syntax, but I am unable to read an HTML5 Web SQL database BLOB entry into a DataURL using the HTML5 Filereader API. Here, try it for yourself on Chrome Dev Channel: http://austin.99k.org/index.html Choose multiple files, then inspect the page and go to storage. You'll see that a database has been cr...
After rotating a canvas context then drawing an image on it, I find out that the edges of the image becomes jagged.. like so: picture. Is there a way to enable anti aliasing so the edges look more smooth?? ...
From what I have read, it appears that HTML5 removes the distinction between strict and transitional (always strict now). I have not been able to find it specifically mentioned anywhere, only implied. Is this the case? ...
Hello everyone and thanks for reading... I'm a Mono / Web developer and was recently talking to an Apple guy regarding development on the iPhone and iPad. Now I know that Objective C / XCode is the heavy hitter for development on these platforms; however, I'm pretty sure he mentioned (and showed me) a HTML5 application he had created th...
I am writing some code that uses HTML5 canvas. Genereally it works well, but now I found a very strange behaviour. The weird thing is that it is consistent on different browsers, so must be that I understood the thing wrong... despite this the docs seem to say exactly what I do. Here is the code (it's an object method): MyCanvas.prot...
Consider the following code (includes jQuery): <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script type="text/javascript" src = "js/jquery-1.4.2.js"></script> <s...
I'm trying to delegate a click event to a TR element that contains a TD with a specific attribute, i.e. <table> <tr> <td>product one</td> <td>price</td> </tr> <tr> <td data-imgurl="images/p2.png">product two</td> <td>price</td> </tr> </table> The goal is to click on the row and retrieve that row's TD "data-img...
I've encoded a few videos on http://www.theparkerpalmsprings.com to play using HTML5 when loaded via an iPhone or iPad. In my testing, everything works as expected when viewing the site on an iPhone (I've tested on a 3G and iPhone 4), but when loading on the iPad the Quicktime logo flashes quickly and then nothing happens. Is this a prob...
hello! i'm playing around with html5 video cause it's nice to have fallback for iphone/ipad. html5 video first checks for <source> elements, if no formats are supported it falls back to whatever content is provided inside the <video> tag (e.g. flash). i'd love to reverse the behaviour to save bandwidth: use flash by default, if not...
I have an 'iframe' next to a 'form'. The form needs to have absolute width (width:450px), and the width of iframe will be relative as it will be whatever is left from the form. So for the iframe I will need something equivalent to 'width: 100% - 450px'. How can I achieve that? Thanks in advance. ...
I want to learn to program the canvas element. Anyone got any recommendations of websites / books? ...