Google Chart API

Google introduced it Chart API last December. For reference, I noted here my tips. I need a 3D Pie chart. The code should looks like below: <img src=”https://chart.apis.google.com/chart?cht=p3&chd=t:50,10,40&chs=500×200&chl=PR|HTTP Status|Whois”/> The code can break down as shown here: “cht=p3” is the...

basic of basic

1) $() function is actually a factory for jQuery object. It is the object encapsulates zero or more DOM dlements. 2) .addClass() and .removeClass() They are fairly self-explanatory. Its only parameter is the name of the class to add or...