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

Prototype

Prototype is the most popular Ajax framework. It used by many giant-website such : Apple, Gucci, etc… The Prototype JavaScript Framework is a JavaScript framework created by Sam Stephenson. Prorotype is implemented as a single file of JavaScript code “prototype.js”.

Prototype is also used as the low layer for many framework, for example: script.aculo.us, Rico, ExtJS, Moo.fx, etc. Prototype provides many functions for developing JavaScript web applications. The prorotype features programming shortcuts for accessing element, events, and major functions to deal with Ajax.

Prototype also feature library functions to support object oriented programming that use classes and ojects, something the JavaScript language hard to implement.

You can find and download prototype on their site.

May 20th, 2008 by Admin