MDIA 2294



3 Important Jquery Concepts

What is Jquery ?

Jquery , developed in 1999, was introduced to make writing javascript easier. The purpose behind it was to reduce the typing done in javascript ultimately saving users time and money by having to write less and do more.

In this chapter we will focus on the 3 main fundamental concepts of jquery. These topics include :

  • Selector syntax
  • DOM get and set actions
  • Effects and animation action

1.1 Selector syntax

In Jquery, you select (query) HTML elements and perform "actions" on them. This library is built on selecting elements and performing actions on them.

It's syntax goes as follow:

$(selector).action();

As you can see, each time you try and select anything, a "$" is going to go at the start of your line. followed by the dot notation in order to perform different actions on that specific selector

Here is a real time example:

$("#classA").css("color","blue");

Remember in our javascript DOM css example to target any id we had to do :

document.getElementById("classA").style.color="blue";

Now with Jquery, this typing and the referencing have significantly reduced in length

To select an ID you must but a "#" in front of you ID name. and a "." in front of your class name.

Here are some other real time examples :

$("#classA").css("color","blue");

$(".headerText").html("Welcome to DisneyWorld")