How to minify your JavaScript and CSS.

In this article I will explain why it's really important to compress or in other words, minify your JavaScript and CSS files.

What is minification:

Minifying your code, means the following:

Read the rest of this post »

Posted on December 23, 2010 at 2:44 am by admin · Permalink · Leave a comment
In: CSS, JavaScript Tricks & Tutorials, jQuery Tricks & Tutorials

Highlighting Odd And Even Table Rows With jQuery

There are various ways to present organized content on the page and one of the is table row highlighting. Instead of dividing rows using borders, designer can change background of even or odd rows.

Have a look at the example here. Read the rest of this post »

Posted on December 18, 2010 at 6:15 pm by admin · Permalink · Leave a comment
In: jQuery Tricks & Tutorials

Parsing XML With jQuery

In this article I will explain how to parse XML using jQuery. Personally I find it to be the easiest way to manipulate data in XML format since jQuery provides very intuitive and simple interface.

We are going to parse XML file using jQuery and output the information in a table format. Here is the live demo of this page. Read the rest of this post »

Posted on December 16, 2010 at 12:42 am by admin · Permalink · Leave a comment
In: jQuery Tricks & Tutorials

Importance of Having a Visitor Tracking Tool

Google Analytics
Visitor tracking is considered one of the must-have features of your website and this article tells you why. Read the rest of this post »

Posted on December 13, 2010 at 11:53 pm by admin · Permalink · Leave a comment
In: Visitor Tracking

Very Simple jQuery Drop Down Menu Tutorial

As the title of this article states, we are going to build a very simple and clean drop down menu using jQuery, XHTML and CSS.

Here the example of what we are going to be building. Read the rest of this post »

Posted on December 11, 2010 at 5:10 pm by admin · Permalink · Leave a comment
In: jQuery Tricks & Tutorials

What is jQuery?

jQuery is a JavaScript library designed to simplify client-side scripting with JavaScript.

When jQuery was introduced to web designers and developers, the entire web industry has exploded with various tools based on jQuery. The reason for it was pretty simple - the easiness of writing a complicated JavaScript code just in one line. Read the rest of this post »

Posted on December 9, 2010 at 10:28 pm by admin · Permalink · Leave a comment
In: jQuery Tricks & Tutorials

Alternative To PHP “foreach” In JavaScript

When I just started to learn JavaScript, one of the inconveniences I experienced was absence of "foreach" loop statement. Later on, I found on the internet, that it actually exists. So here is how it's done. Read the rest of this post »

Posted on December 9, 2010 at 9:39 pm by admin · Permalink · Leave a comment
In: JavaScript Tricks & Tutorials