Found this little jQuery plugin to add rules to your document stylesheet, the style tag in the header.
Got a CDN for that? Well cdnjs.com probably has, otherwise just ask!
It’s also a nice place to discover some new javascript toys to play with.
by Marakana
Interested in diving into jQuery development, but not exactly sure where to start? Check out this video from Microsoft program manager, Damian Edwards.
In this 50 minute live coding demo, Damian will start off with an overview of the JavaScript fundamentals that every jQuery developer should know. Next, he’ll show you some of the features that make jQuery the most popular JavaScript library today.
A few of the topics covered in this video are:
- Fundamentals of JavaScript
- JavaScript functions
- Objects
- Scope and closures
- CSS Selectors
- Mouse events
- jQuery animation
** Head over to marakana.com/techtv to see more educational videos on Java and open source development.
JSManipulate is an image filter and effects library written in Javascript for client-side manipulation of images on a web page.
Cool stuff!
(Source: github.com)
Very useful bundle for textmate which runs code through jshint when you save and gives you pretty feedback.

Features:
Nice introduction to Test-driven development (TDD) in JavaScript using QUnit.
Our site is mainly a one page site which makes it very javascript heavy. Up until recently, even though the rest of our stack has great test coverage, our javascript had no automatic test coverage. We recently did a huge redesign of our site and, in doing so, decided to rewrite a lot of the…
Lea Verou – Polyfilling the gaps (JSConf.eu)
Polyfills, a term coined by Remy Sharp back in 2010, are scripts that mimic a future API providing fallback functionality to older browsers. The rise of HTML5, CSS3 and ES5 resulted in various polyfills being written by developers all over the world to fill in the gaps of browser support, so we can use new standards before they are universally adopted by browser makers. In this talk, we will explore various techniques commonly employed in good polyfills and shims, so you can start writing your own when a polyfill for the feature you need is not already available. This way, not only you will be able to improve your own workflow, but also share it with the world and give back to the community.
(Source: badassjs.com)