What is jQuery?

Thursday, February 11, 2010


jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. It was released in January 2006 at BarCamp NYC by John Resig.” – Wikipedia 2009

Now that we’ve got that out of the way, the most plain speaking way to describe jQuery is that it’s a layer that sits on top of JavaScript and HTML, enabling you as a developer to easily code manipulations in your web page, such as doing something on a click event, or making elements in your page animate or change colour. jQuery is obviously more than this, but in a nutshell it’s aim is to make your life easier by giving you great flexibility whilst writing minimal lines of code.

A great example of it’s simplicity is it’s animation functionality. jQuery has an “animate” function which you give some parameters such as CSS properties, and a speed of execution. jQuery takes what would be a large chunk of javascript code and puts it into a one liner, such as:

$("myElement").animate({"height": "80px"}, 1500);The above example would take an HTML element on your page, such as a DIV element called “myElement” and animating it’s height to 80 pixels. The “1500″ quoted at the end is the time it takes to execute that animation, so in this case, 1500 milliseconds.

What is RSS?

Wednesday, November 18, 2009

What is RSS?

RSS (Rich Site Summary) is a format for delivering regularly changing web content. Many news-related sites, weblogs and other online publishers syndicate their content as an RSS Feed to whoever wants it.

Why RSS? Benefits and Reasons for using RSS

RSS solves a problem for people who regularly use the web. It allows you to easily stay informed by retrieving the latest content from the sites you are interested in. You save time by not needing to visit each site individually. You ensure your privacy, by not needing to join each site's email newsletter. The number of sites offering RSS feeds is growing rapidly and includes big names like Yahoo News.

What do I need to do to read an RSS Feed? RSS Feed Readers and News Aggregators

Feed Reader or News Aggregator software allow you to grab the RSS feeds from various sites and display them for you to read and use.

A variety of RSS Readers are available for different platforms. Some popular feed readers include Amphetadesk (Windows, Linux, Mac), FeedReader (Windows), and NewsGator (Windows - integrates with Outlook). There are also a number of web-based feed readers available. My Yahoo, Bloglines, and Google Reader are popular web-based feed readers.

Once you have your Feed Reader, it is a matter of finding sites that syndicate content and adding their RSS feed to the list of feeds your Feed Reader checks. Many sites display a small icon with the acronyms RSS, XML, or RDF to let you know a feed is available.