Ajax Theme for Wordpress

This is another cool ajaxed wordpress theme. I’m just a newbie in wordpress and ajax. I try to unite ajax and wordpress and i make this theme. so, this is the result of my first work. This theme is available for free, and you can get the download link at the bottom of this post.

Read the rest of this entry »

June 20th, 2008 by Admin

Start Using jQuery

jQuery main function is the ‘$(document).ready() function’. Although it’s many way to start jQuery, Always use this function to start using jQuery is good. example:

$(document).ready(function() {
$('.header-company').addClass('highlight');
});

This will add class named ‘highlight’ to element that have ‘header-company’ class. This is used generally for changing / adding class for CSS. So, when the document was loaded, the jQuery command will add the CSS Style.

June 7th, 2008 by Admin