Today I am going to write about JQUERY. I recently used Jquery while editing a wordpress plugin. I never used Jquery before. So, those who are total beginner of Jquery might find this helpful.
What is JQUERY
Jquery is a javascript library. It's pretty easy to use and you can do a lot of things with simple command.
To use Jquery, you need to download Jquery library and include it in the page with that you want to wish. In the time of this writing, Jquery 1.8 has been released. You can download it from JQUERY WEBSITE. After downloading save it to a text file with .js extension.
To use Jquery, you need to download Jquery library and include it in the page with that you want to wish. In the time of this writing, Jquery 1.8 has been released. You can download it from JQUERY WEBSITE. After downloading save it to a text file with .js extension.
Basic Syntax
The basic format of writing jquery is $(selector).action() . The selector is used to select HTML element and action is the your preferred action that you want to perform on that element. You can access any HTML element with selector.