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:
- Removing white spaces.
- Renaming variables and functions to shorter named ones.
- Removing comments.
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 »
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 »
In: jQuery Tricks & Tutorials
Importance of Having a Visitor Tracking Tool

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 »
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 »
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 »
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 »
In: JavaScript Tricks & Tutorials
