Basic MySQL Setup

Suppose you’ve downloaded and installed wampserver on your local Windows machine and want to start manipulating MySQL databases. What now?
First of all you need to know where on your hard drive all the MySQL stuff is. I installed wam…


Books On jQuery

I started learning jQuery a couple of days ago, and I’m doing pretty well if I say so myself. The jQuery I’ve seen so far hasĀ  been straightforward and quite intuitive. The book I was following was the jQuery Cookbook, but it got…


jQuery – Descendants And Children

The distinction between the child of a particular element and a descendant of an element isn’t unique to jQuery. The same concepts are used in CSS too. For those who are new to this, and as a recap for all the experts out there, here is the…


Selecting Elements In jQuery

The default way of selecting an element in jQuery is as follows:

jQuery('p')

This selects all the elements on the page, to do with as you please. If some paragraphs have a class of “emphasis”, you can select those with the filter


Learning jQuery

The time has come to learn jQuery!
Here, you can download jQuery. Scroll down to the “Current Release” bit, right click on the download link and select “save as”. Save it to a folder called “jquery”.…