Tuesday, August 31, 2010

Enhanced JavaScript as JQuery

Jquery, next trend of the web developing, is used to add some fancy stuff to a web site. Using Jquery, programmers would do client side n server side stuff as well.Mainly focused on"The Write Less and Do more " , same thing can be done with java script, but while using jQuery number of lines is less.

Actually JQuery is a javascript header file:you can download it from here.
http://code.jquery.com/jquery-1.4.2.min.js

when you using it you need to import this script to the file all the time.
like this inside the header tags :

src="jquery-1.4.2.min.js"

Now you can write javascript functions using methods, functions declared inside that header.

The main advantage is Ajax Capabilities are there. The functions and methods therein allow programmers to load data from the server without a browser page refresh.Using Ajax API there.

Ex:

$(document).ready(function(){
$("button").click(function(){
$("#id_1").("background-color","yellow");
});
});

Above example shows you ,When you click on the button paragraph which are on id=id_1 area background colour will turned in to yellow.

Tuesday, August 24, 2010

joomla gives

As Joomla technology came to the web arena,Creating a web site site has become a easy thing.Customizing the components,We can create a basic website.

Step 1:Download joomla 1.5 zip file.
Step 2:Copy that file to server folder(create joomla folder)
do either one Xammp : paste it to c:\Xammp\htdocs\joomla folder
Wampe : paste it to c:\Wampe\WWW\joomla folder

Step 3:Run it -->http://localhost/joomla and install it.
Step 4:Do the essential configurations
Step 5:make sure and Do remember to remove the install folder from the joomla folder.

Now you are ready to create a website.