Monday, July 1, 2013

Selector in JQuery

JQuery Selectors are one of the most important part of a Jquery statement. They allow us to select particular element from the web page and perform some kind of action on them. This selection may be based on CSS selectors or based on their own custom selectors.

All the selectors are represented by $ followed by parenthesis, $().


Thursday, June 27, 2013

Structure of JQuery

JQuery Synax

JQuery, the name itself says it is querying something. It means it selects a particular HTML element and performs some action on it. Hence the syntax of a JQuery is also in that format only.

$(selector).action(), where
  • $ is for representing it as a jQuery.
  • selector represents the HTML element to be selected.
  • action() represents the kind of action we perform on the selected element.

Wednesday, June 26, 2013

Introduction to JQuery

JQuery is nothing but a modified version of Java Scripts. JQuery is easier to learn and to implement. It is a JavaScript Library. Before learning JQuery, you need to know three things.

  • HTML
  • CSS
  • Java Script
And Remember another thing, you are just writing the Java Script in another way.