Tuesday, October 5th, 2010
Category: JavaScript
, jQuery
Here’s a live blog from jQuery creator John Resig’s talk at FOWA, where he’s giving us an update on the new toys from the jQuery team. Data Link jQuery already supports a data API: < View plain text > javascript $("div").data("test", 5); $("div").data("test")===5; $("div").removeData(); This is better than attaching data directly to data nodes for Read the rest…
Category: Games
, JavaScript
The JS1K conference wrapped up recently. One of the winners that jumped out at me recently was an implementation of Wolfenstein 3D…. in 1K of JavaScript: The author mentions some of the features: WOLF1K features a 32×32 map ( a 1024 cells grid ) with textured walls colored by orientation ( North, South, East, West Read the rest…
Monday, October 4th, 2010
Category: JavaScript
James Burke has rapidly of late sequenced through a series of releases of RequireJS file and module loader for JavaScript – reaching Release 0.14.2 (mostly bug fixes) this week. The software recently gained preliminary support for anonymous modules. Looking forward, Burke has posted a design sketch and code on GitHub (“rough at the moment, mostly Read the rest…
Sunday, September 26th, 2010
Category: JavaScript
Do a search for JavaScript and you find a painful set of returns. The worst offender is having Java results show up. Ouch. (Remember: Java is to JavaScript as Ham is to Hamster!). Compare to a search for Java, or C#, or Ruby, (or ….). Ouch. We need better. To begin with the pirates of Read the rest…
Friday, September 24th, 2010
Category: Web Ninja Interview
You know what time it is…. it’s time for another Web Ninja Interview! Huzzah! The Web Ninja Interview series focuses on people doing amazing and interesting work using JavaScript, CSS, HTML, SVG, WebGL, and more. One of the goals behind the Web Ninja Interview series is to talk with the web gurus behind many amazing Read the rest…
Thursday, September 23rd, 2010
Category: Google
The CSS Ninja details how Gmail’s drag and drop from the desktop works; when you drag a file from the desktop into Gmail the file will automatically start uploading. The CSS Ninja recreated the code in a demo (source code [zip]). The code works in Firefox and Chrome. On Firefox the File API is used Read the rest…
Wednesday, September 22nd, 2010
Category: Security
Samy has put together an impressive solution to store persistent cookies on user’s computers even when they have cookies disabled. The Evercookie script reaches deep into the toolbox to fish out some very interesting and devious tricks for local storage: Standard HTTP Cookies Local Shared Objects (Flash Cookies) Storing cookies in RGB values of auto-generated, Read the rest…
Category: Chrome
, Google
, IE
Big news: Chrome Frame is now stable and out of beta! Today, we’re very happy to take the Beta tag off of Google Chrome Frame and promote it to the Stable channel. This stable channel release provides our most polished version of Google Chrome Frame to date, allowing users to access modern web technologies like Read the rest…
Category: HTML
, Performance
From David Walsh comes a good writeup on the HTML5 link prefetch tag: < View plain text > HTML <!– full page –> <link rel="prefetch" href="http://davidwalsh.name/css-enhancements-user-experience" /> <!– just an image –> <link rel="prefetch" href="http://davidwalsh.name/wp-content/themes/walshbook3/images/sprite.png" /> You use the link tag to do prefetching, setting the rel to “prefetch” and giving the URL to Read the rest…
Tuesday, September 21st, 2010
Category: Animation
, Firefox
Firefox 4 is going to be a very exciting release. Robert O’Callahan details one of the new features, which should help animation, called mozRequestAnimationFrame. First the motivation: In Firefox 4 we’ve added support for two major standards for declarative animation — SVG Animation (aka SMIL) and CSS Transitions. However, I also feel strongly that the Read the rest…
Monday, September 20th, 2010
Category: HTML
, Standards
, Video
Did you know that work is being done to enable videoconferencing from HTML5 applications? Ian Hickson has been doing work on the element in a separate draft to make this possible. The element will be used to allow the user to give permission to a page to use a device, such as a video camera. Read the rest…
Friday, September 17th, 2010
Category: Node
, Yahoo!
, YUI
Progressive enhancement is still a confusing matter for a lot of people who are very excited about the capabilities of JavaScript in modern browser environments. It can feel anachronistic to write your solutions for a non-JS environment and then once more enhances in JavaScript. I grew up like that so for me it is a Read the rest…
Category: Web Ninja Interview
As part of our Doob-a-thon today, we have a Web Ninja Interview with Mr. Doob. The Web Ninja Interview series focuses on people doing amazing and interesting work using JavaScript, CSS, HTML, SVG, WebGL, and more. Mr. Doob has delighted us with many awesome visualization and demos, including the recent Wilderness Downtown project. He is Read the rest…
Category: Graphics
The Wilderness Downtown HTML5 web site came out recently and blew people away. Via Mr. Doob comes a detailed blog post breaking down how the web site was actually created. First, he makes clear that this was a team effort, including work by Chris Milk, Aaron Koblin, “Spite”, George Michael Brower, Eduard Prats Molner, Guille Lopez, Read the rest…
Thursday, September 16th, 2010
Category: CSS
When creating mobile web apps on devices like the iPhone, iPad, and Android you lose the beloved CSS :hover property which can make things so much easier to create. Chris Coyier has been exploring how to respond to single and double clicks still using pure CSS even when we don’t have :hover. For single clicks, Chris Read the rest…
Category: CSS
CSS has always been a powerful tool in the web programmer’s arsenal, especially today with CSS3, CSS Animations/Transforms/Transitions, CSS FlexBox and Columns, CSS with SVG, etc. If you’re trying to do it all with JavaScript, many times you are probably doing things wrong — a CSS solution will often be more elegant, terse, and performant. Read the rest…