I had the pleasure to work with some really bright web developer and designer in the last months, building some of the most exciting and inspiring HTML5 application. Thank you all!
Internet Explorer 9 Release Candidate is now available for download here.
There are many news, from new HTML5 features to enhanced performance, from state-of-the-art security to redesigned user experience. Here’s my TOP 5:
A page is now able to request the user location in a secure way using a few lines of code. The geo-location specification is now implemented by all major browsers! There’s no more reason for Google Maps to use browser detection code and block that feature to IE users…
if (navigator.geolocation != undefined)
navigator.geolocation.watchPosition(onPositionFound, onPositionError);
function onPositionFound(pos) {
Debug("Lat: " + pos.coords.latitude + ", Long: " + pos.coords.longitude);
}
IE9 has by far the cleanest UI of all browsers out there today. Huge step forward from IE8!
It’s fast. It’s smoking fast! You can measure it with synthetic benchmarks, you can run the demos on ietestdrive…but my advice is to run it with your favorite site. There’s no better benchmark than that!
I absolute love the ability to format the JavaScript code using the F12 Developer Tools (embedded in the browser, you don’t need to install addons).
As noted earlier, we have not been able to implement the remaining part of the <canvas> specification (globalCompositeOperation) in IE9 Beta due to still happening important conversation in W3C at that time. Since then we made a good progress and we are now happy to announce full support for the <canvas> spec in IE9 RC!
(Scratch-off demo by Beej Jorgensen)
Obviously there is much more…What are your TOP 5 features?