02
May
2012

jQuery Toggle

Posted in: jQuery , No Comments
post image

jQuery Toggle is used to toggle a region. In simple words we can say it is used to show and hide a selected element / region. The toggle() method toggles between hide() and show() for the selected region / elements.

01
May
2012

Fix “The slug is already in use by another term” in WordPress

Posted in: WordPress No Comments
post image

You may encounter with this error message when creating / renaming / updating a category in wordpress:

01
May
2012

How to select last list item using CSS

Posted in: CSS No Comments
post image

Sometimes we need to select only last item in a list. with CSS you can easily select only the last item and apply special CSS styling.

30
Apr
2012

jQuery Accordion

Posted in: jQuery , No Comments
post image

In this jQuery tutorial I will show you how to create jQuery Accordion. Accordion is very useful to show many contents in a small space and in fancy way.

30
Apr
2012

Simple animation using jQuery

Posted in: jQuery No Comments
post image

Playing with jQuery is really fun. In this tutorial I will show you, how jQuery can be used to perform cool animation.

30
Apr
2012

How to select CSS elements in jQuery

Posted in: CSS, jQuery , No Comments
post image

jQuery let you select CSS elements and perform some action on that CSS element. Selecting a CSS elements in jQuery is very easy. Just wrap the CSS element in $(“”) You can also use single quota, like $(”)

30
Apr
2012

jQuery Show Hide

Posted in: jQuery , No Comments
post image

In this jQuery tutorial I will show you how you can use jQuery to show hide something or a DIV region with a click. Its very easy to do with jQuery.

30
Apr
2012

PHP Variables

Posted in: PHP , No Comments
post image

For any programming language variables are the bread and butter of every. PHP also have variable features. variables help you store and retrive data. PHP supports a number of different variable types like integers, floating point numbers, strings and arrays.

30
Apr
2012

Comments in PHP

Posted in: PHP No Comments
post image

PHP supports both single-line comment and multi-line comment blocks. For a single line comment use // or # and all text to the right of this symbol will be ignored by PHP interpreter.

30
Apr
2012

Basic HTML page with PHP

Posted in: PHP No Comments
post image

Let’s see how a basic HTML page with PHP can be setup. Below is a basic HTML page: <!DOCTYPE html> <html> <title>my first PHP page</title> <head></head> <body> <!– our php codes here –> </body> </html> PHP codes syntax is: <?php [..]