Help out: share this site!

Latest Screencasts

jQuery AJAX

Remi - 2009-09-28 - paid

A few years back, I watched the Peepcode episode Ajax with Prototype.js. I thought it was the coolest thing ever!Compared to having to deal directly with XMLHttpRequest objects, it was so easy. But that was way back in 2007. Now, jQuery is where it’s at. And doing AJAX with jQuery... Watch this screencast


jQuery Plugin Development

Remi - 2009-09-25 - paid

Creating plugins for jQuery is trivially easy and can help you: clean up your javascript in individual applications share re-used javascript between multiple applications share your snazzy jQuery voodoo with others! 1 $.fn.color = function(color){ 2 return this.each(function(){ 3 $(this).css('color', color); 4 }); 5 }; 6 7 $('a').color('red').css('font-weight', 'bold'); 8... Watch this screencast


jQuery Basics

Remi - 2009-06-16 - paid

I was about to make a short screencast showing how to use a jQuery plugin I created when I realized … there are still web developers out there who haven’t used jQuery! So … developers who aren’t yet fully comfortable with jQuery … this one is for you! I show... Watch this screencast