Lateral Code
A Web Development Blog Focused on Code and Technology
Currently Browsing: Home » 2009 » July
Archive for July, 2009
Effects with jQuery 1.3
By Karthik Viswanathan on Sunday, July 12th, 2009 | Tags: javascript | No Comments »
This Chapter has been extracted from Packt’s latest book “Learning jQuery 1.3”:
With jQuery, we can easily add impact to our actions through a set of simple visual effects, and even craft our own, more sophisticated animations. jQuery effects certainly add flair, as is evident when we see elements gradually slide into view instead of appearing all at once. However, they can also provide important usability enhancements that help orient the user when there is some change on a page (especially common in AJAX applications). In this chapter, readers will explore a number of these effects and combine them in interesting ways.
To read more kindly visit http://www.packtpub.com/files/learning-jquery-1-3-sample-chapter-4-effects.pdf.
Introducing PQLite – PHP Query Lite
By Karthik Viswanathan on Tuesday, July 7th, 2009 | Tags: php | 1 Comment »
A few weeks ago, I created a free PHP library for traversing (X)HTML documents: PQLite (PHP Query Lite). In this article, I will present a few key features of PQLite and how easy it is to use.

Before I begin, what does it truly mean to traverse an (X)HTML document?
- Being able to sift through HTML to find certain tags
- Applying the same concept to CSS selectors (classes, ids, etc.)
- Modifying these tags by changing their text and/or attributes
- Accessing special tags (odd, even, first child, last child, children of a parent tag) with simple functions
