HTML5 is the latest revision of the HTML standard, including many new syntactical features and several APIs that support drawing, video, audio, etc.
190
votes
3answers
44k views
Change an input's HTML5 placeholder color with CSS
Chrome supports the placeholder attribute on input[type=text] elements (others probably do too).
But the following CSS doesn't do diddly squat to the placeholder's value:
<style>
...
132
votes
10answers
33k views
Any reason not to start using the HTML 5 doctype? [closed]
<!DOCTYPE html>
It is supposed to be backwards compatible with HTML4 and XHTML. John Resig posted about some of the benefits.
As long as we don't use any of the new and not supported yet ...
126
votes
7answers
36k views
Storing Objects in HTML5 localStorage
I'd like to store a JavaScript object in HTML5 localStorage, but my object is apparently being converted to a string.
I can store and retrieve primitive JavaScript types and arrays using ...
108
votes
24answers
77k views
What browsers support HTML5 WebSocket API?
I am going to develop an instant messaging application that runs in the browser.
What browsers support the WebSocket API?
99
votes
9answers
16k views
What are good resources for learning HTML 5 WebSockets?
What are good resources for learning HTML 5 WebSockets?
79
votes
35answers
37k views
Which is the future of web development: HTML5 or Silverlight(or other RIA framework)? [closed]
My colleagues have a heated debate on what is the future of web development. One side is supporting HTML5 and the other is supporting Silverlight. There is no conclusion of the debate yet.
In my ...
75
votes
29answers
20k views
HTML 5 <video> tag vs Flash video. What are the pros and cons?
Seems like the new <video> tag is all the hype these days, especially since Firefox now supports it. News of this are popping up in blogs all over the place, and everyone seems to be excited. ...
70
votes
1answer
8k views
How does _gaq.push(['_trackPageLoadTime']) work?
How does the Google Analytics Site Speed feature, _gaq.push(['_trackPageLoadTime']), work? Is there any documentation about how it works?
70
votes
12answers
4k views
Would you recommend starting from HTML5 & CSS3 for beginners?
I am a middle school student trying to dive into the world of web designing and developing.
I have been interested in (using) the web since I was little, but now I want to be in the "creating" side. ...
70
votes
27answers
35k views
How can HTML5 “replace” Flash? [closed]
A topic of debate that's seen a resurgence since the unveiling of the iPad is the issue of Flash versus HTML5. There are those that suggest that HTML5 will one day supplant/replace Adobe Flash.
I do ...
70
votes
8answers
43k views
HTML 5: Is it <br> <br/> or <br />?
I've tried checking other answers, but I'm still confused--especially after seeing W3schools HTML 5 reference.
I thought HTML 4.01 was supposed to "allow" single-tags to just be <img> and ...
67
votes
9answers
35k views
HTML Anchors with 'name' or 'id'?
When I want to refer to some part of a webpage with the "http://example.com/#foo"-method, which one is The One to use:
<h1><a name="foo"/>Foo Title</h1>
or
<h1 id="foo">Foo ...
61
votes
12answers
41k views
Which browsers support html5 offline storage?
Essentially, I wanted to run a piece of demo code from W3c Offline Webapps page. It looks like that:
var db = window.openDatabase("notes", "", "The Example Notes App!", 1048576);
Firefox 3.5, IE8 ...
58
votes
3answers
7k views
Using HTML5/Canvas/Javascript to take screenshots
Google's "Report a Bug" or "Feedback Tool" lets you select an area of your browser window to create a screenshot that is submitted with your feedback about a bug.
screenshot by Jason Small, posted ...
58
votes
12answers
7k views
What is the current state of the art in HTML canvas JavaScript libraries and frameworks?
I am currently investigating options for working with the canvas in a new HTML 5 application, and was wondering what is the current state of the art in HTML canvas JavaScript libraries and frameworks?
...
56
votes
4answers
34k views
Capture HTML Canvas as gif/jpg/png/pdf?
Is it possible to capture or print what's displayed in an html canvas as an image or pdf? I'd like to generate an image via canvas, and I'd like to be able to generate a png from that image.
55
votes
8answers
40k views
Is there a good jQuery Drag-and-drop file upload plugin?
Is there a nice tidy jQuery plugin that allows including a single JS script then using a simple snippet to enable a form? Something like this:
$j('#MyForm').enableDragDropUploads('.upload-area')
...
54
votes
9answers
30k views
Sound effects in JavaScript / HTML5
I'm using HTML5 for its most noblest purpose: games, of course! The obstacle I've run into now is how to play sound effects.
The game is a port of an old Macintosh game, and because of it's age, the ...
53
votes
15answers
77k views
Any good, visual HTML5 Editor or IDE?
Well it looks like Dreamweaver CS5 will try to smoother the HTML5 thing for a few more years (weeks actually). Seems like the next rung down is right to Notepad!
Anyone know a good HTML5 editor with ...
50
votes
12answers
106k views
Does Internet Explorer 8 support HTML 5? [closed]
Is there any HTML5 support in IE8? Is it on the IE8 roadmap?
49
votes
4answers
2k views
How does facebook rewrite the source URL of a page in the browser address bar?
Go to http://www.facebook.com/facebook?v=wall, then click on the info tab. The content will be loaded, and the address bar now becomes http://www.facebook.com/facebook?v=info but the webpage didn't ...
47
votes
9answers
30k views
Drag-and-drop file upload in Google Chrome/Chromium and Safari?
Drag-and-drop file uploading can be done in Firefox 3.6.
A Google search for html5 drag-and-drop file uploading -gmail gives things like:
Native Drag + Drop file upload in Firefox 3.6
...
47
votes
10answers
30k views
Resizing an image in an HTML5 canvas
I'm trying to create a thumbnail image on the client side using javascript and a canvas element, but when I shrink the image down, it looks terrible. It looks as if it was downsized in photoshop with ...
47
votes
6answers
37k views
How to clear the canvas for redrawing
After experimenting with composite operations and drawing images on the canvas I'm nog trying to remove images and compositing. How do I do this?
I need to clear the canvas for redrawing other ...
46
votes
11answers
11k views
Is it time to start using HTML5? [closed]
Is it time to start using HTML5? Someone has to start sometime but is now the time?
Is it possible to to use the new HTML5 tags and code in such a way as to degrade gracefully?
45
votes
9answers
2k views
Google homepage not valid html
I was looking at the www.google.com in Firebug and noticed something odd: The Google logo is centered using a center tag.
So I went and checked the page with the W3C validator and it found 48 errors. ...
44
votes
10answers
6k views
Choosing Mobile Web HTML5 Framework
For the new project, I have been searching for a framework with support of HTML5 and runs on mobile, that is IPhone, IPads. I found out these:
Sencha Touch
M-Project
jQuery Mobile
jQTouch
Titanium
...
43
votes
19answers
49k views
Is there a way to make HTML5 video fullscreen?
Is there a way to play a video fullscreen using the HTML5 <video> tag?
And if this is not possible, does anybody know if there is a reason for this decision?
42
votes
3answers
8k views
HTML5shiv vs Dean Edwards IE7-js vs Modernizr - which to choose?
I'm looking to build my first HTML5 site and have been looking at working with IE.
There is html5shiv, Dean Edwards ie7-js and then Modernizr. Are these all largely the same? I'm confused about ...
42
votes
7answers
34k views
HTML5 Canvas resize to fit window
How can I automatically scale the HTML5 <canvas> element to fit the page?
For example, I can get a <div> to scale by setting height and width to 100%, but a <canvas> won't scale, will it?
40
votes
4answers
2k views
HTML5 Boilerplate vs. HTML5 Reset
Hey everyone — HTML5 Boilerplate and HTML5 Reset are two HTML, CSS, and JavaScript templates with a lot of modern best practices built-in. Their goals are largely the same:
Fast, robust, ...
40
votes
4answers
1k views
HTML filter that is HTML5 compliant
Is there an HTML filter like HTML Purifier that is HTML5 compliant?
plzsendtehcodez bounty
Recurring question, not sufficiently documented yet. None of the other HTML cleanup solutions for ...
40
votes
7answers
10k views
Will HTML5 allow web apps to make peer-to-peer HTTP connections?
This is probably a dumb question, but I have to ask it anyway. I'd like to know if it is at all possible to create a web app that, with the help of a central server, could create direct connections ...
36
votes
13answers
12k views
Offline iOS web app: loads my manifest, but doesn't work offline
I'm writing a web app to be used offline on iOS. I've created a manifest, am serving it up as text/cache-manifest, and it usually works fine, when running inside Safari.
If I add it as an app to my ...
36
votes
7answers
12k views
Good tutorial for using HTML5 History API (Pushstate?)
I am looking into using the HTML5 History API to resolve deep linking problems with AJAX loaded content, but I am struggling to get off the ground. Does any one know of any good resources?
I want to ...
36
votes
6answers
23k views
Why does IE9 switch to compatibility mode on my website?
I have just installed IE9 beta and on a specific site I created (HTML5) IE9 jumps to compatibility mode unless I manually tell it not to. I have tried removing several parts of the website but no ...
35
votes
6answers
5k views
Can you take a “screenshot” of the page using Canvas?
I have a page where we're positioning a bunch of elements using CSS, and changing their "top and left" positions using JS.
I've had reports that these things have been misaligned, but a user has ...
35
votes
6answers
29k views
What's the status of the HTML 5 <video> tag and webcam integration?
Even though it seems to be in some kind of jeopardy, the open video standard is a great idea. I saw some demos on motion tracking with it - just proofs-of-concept, but interesting nonetheless. Now, ...
34
votes
4answers
9k views
Does Internet Explorer support pushState and replaceState?
Does anybody know if Internet Explorer supports the history.pushState() and history.replaceState() methods for manipulating browser history? Considering these are just being implemented in Firefox 4, ...
32
votes
4answers
746 views
Developing a HTML5 offline storage solution for iOS/Android in 2011
The problem:
I need a device agnostic (e.g. HTML5) solution for storing and querying 250,000+ rows of data offline on a phone or tablet type device (e.g. iOS/Android). The idea being I have people ...
32
votes
14answers
2k views
Is valid HTML5 OK to use now?
I've been reading about HTML5 and would like to start using some of it, particularly datasets as I've found an interesting looking jQuery plugin that I can start using...
...
31
votes
5answers
4k views
Chrome auto formats input=number
I have a web application where I'm specifying an input field to be a number using the HTML5 property type="number".
<input type="number" value="123456" />
By specifying the type, Chrome ...
31
votes
6answers
8k views
Which HTML5 reset CSS do you use and why?
Which HTML5 reset CSS do you use and why? Is there one that you've found to cover more cases?
I've started using HTML5 Doctor's: http://html5doctor.com/html-5-reset-stylesheet/ It seems to work, but ...
31
votes
13answers
3k views
HTML: Include, or exclude, optional closing tags?
Some HTML1 closing tags are optional, i.e.:
</HTML>
</HEAD>
</BODY>
</P>
</DT>
</DD>
</LI>
</OPTION>
</THEAD>
</TH>
</TBODY>
...
31
votes
7answers
4k views
Wanted: Command line HTML5 beautifier [closed]
Wanted
A command line HTML5 beautifier running under Linux.
Input
Garbled, ugly HTML5 code. Possibly the result of multiple templates. You don't love it, it doesn't love you.
Output
Pure beauty. ...
31
votes
6answers
5k views
How to use HTML-5 data-* attributes in ASP.NET MVC
I am trying to use HTML5 data- attributes in my ASP.NET MVC 1 project. (I am a C# and ASP.NET MVC newbie.)
<%= Html.ActionLink("« Previous", "Search",
new { keyword = Model.Keyword, page = ...
31
votes
3answers
8k views
Do HTML5 custom data attributes “work” in IE 6?
Custom data attributes: http://dev.w3.org/html5/spec/Overview.html#embedding-custom-non-visible-data
When I say “work”, I mean, if I’ve got HTML like this:
<div id="geoff" data-geoff="geoff de ...
31
votes
11answers
50k views
HTML5 <video> element on Android
According to:
http://developer.android.com/sdk/android-2.0-highlights.html
Android 2.0 should support the HTML5 video element. I haven't been able to get this to work using a Motorola Droid, and ...
31
votes
12answers
26k views
HTML 5 versus XHTML 1.0 Transitional?
It seems that HTML 5 is going to be supported (partially) by Firefox 3.1 and other browsers. It is adding support for video and audio as tags, but these are new tags that XHTML 1.0 Transitional does ...
30
votes
3answers
10k views
Best way to synchronize local HTML5 DB (WebSQL Storage, SQLite) with a server
I am developing a mobile web application (for iPhone) with a local database (using html5 webstorage) so my app is still usable when the user is offline.
This is working perfectly, but I want to save ...