Updates
Latest Tweet
What's New?
Check out for latest innovation, a computer based training video collection
Like this Page
jQuery Image Rotator - Slideshow Plug-in Part 1
An Introduction to jQuery Templating
JavaScript Templating is a neat idea: it allows you to easily convert JSON to HTML without the work of parsing the it. At Microsoft's MIX10 conference, they announced that they would be starting to work with the jQuery team; one of their efforts was to provide a templating plugin. In this quick tip, I'll show you how to use it!
jQuery - An Introduction
This is an introduction video to the jQuery Javascript Framwork. Stay tuned for upcoming lessons on using this powerful plugin!
jquery slide
This is a quick tutorial of how you can use jquery to make some cool animation effects. It just using the slideToggle and some added CSS3 rounded corners to make it look even better.
jquery ajax and json are awesome
I used ajax before, but I never did it with jquery till I recently learned it. I have a function on my billing interface that pops up a box for the user to update some information. Well before I had write out the raw ajax script, checking for browsers etc, and then ajax would return a comma'd string that i would then split with javascript and then allocate that data somewhere. how naiive was I? Now i can just jquery to do the ajax and then return a JSON object with the data which is awesome! Its so much quicker and sooo much less code