Popular Post: jQuery

jQuery Introduction

jQuery is a JavaScript library designed to simplify HTML DOM tree traversal and manipulation, event handling, CSS animation.

jQuery Syntax

With jQuery you select query HTML elements and perform actions on them. Basic syntax is: $(selector).action().

jQuery Selectors

jQuery selectors allow you to select and manipulate HTML elements. All selectors in jQuery start with the dollar sign and parentheses: $().

jQuery Event Methods

jQuery allows you to attach an event handler for one or more events to the selected elements using on method.

jQuery Fading Methods

jQuery Fading Methods fadeIn(), fadeOut(), fadeToggle(), fadeTo() are used to fade an element in and out of visibility.

jQuery Animation

The jQuery animate() method is used to create custom animations. animate() method Perform a custom animation of a set of CSS properties.

jQuery Chaining

jQuery Chaining allows us to run multiple action on the same set of elements within a single statement.

jQuery add() Method

add() method constructs a new jQuery object from the union of those elements and the ones passed into the method.

jQuery Dimensions

The JQuery Dimensions method is used to work with the dimensions of various elements and browser window.

jQuery AJAX Introduction

Ajax is an acronym for Asynchronous Javascript and XML. It is used to exchanging data with the server without refreshing the web page.

jQuery Filters

The jQuery filter() method returns elements that match a certain criteria. Perform a case-insensitive search for items in a table.