Today’s read: Useful jQuery Function Demos For Your Projects

This one is a real good one. This article from Smashing Magazine gives you a very high level view of what jQuery can do. A real good starter for those who want to try out the possibilities of jQuery in their projects.
Every aspiring Web developer should know about the power of JavaScript and how it can be used to enhance the ways in which people see and interact with Web pages. Fortunately, to help us be more productive, we can use the power of JavaScript libraries, and in this article we will take a good look at jQuery in action.
Source: Smashing Magazine / Useful jQuery Function Demos For Your Projects
Have a good read and make your hands dirty.


It’s funny the way how you write the condition in the if and while loop, like you are checking the “null” and “-1″ against your variables, which seems unusual for me.
I would write instead if(from!=null), and while((count=from.read(contents))!=-1) ..