Skip to content

Category Archives: JQuery

The detach() is an inbuilt method in jQuery that removes the selected elements from the DOM tree including its all text and child nodes but… Read More
The closest() is an inbuilt method in jQuery that returns the first ancestor of the selected element in the DOM tree. This method traverse upwards… Read More
The last() function is an inbuilt function in jQuery which is used to find the last element of the specified elements. Syntax: $(selector).last() Here selector… Read More
The jQuery keyup() is an inbuilt method which is used to trigger the keyup event whenever User releases a key from the keyboard. So, Using… Read More
The jQuery keydown() is an inbuilt method which is used to trigger the keydown event whenever User presses a key on the keyboard. If the… Read More
children() is an inbuilt method in jQuery which is used to find all the children element related to that selected element. This children() method in… Read More
The find() is an inbuilt method in jQuery which is used to find all the descendant elements of the selected element. It will traverse all… Read More
The noConflict() is an inbuilt function in jQuery and jQuery generally use “$” sign as a shortcut identifier. There are many javascript libraries like Angular… Read More
The parent() is an inbuilt method in jQuery which is used to find the parent element related to the selected element. This parent() method in… Read More
The first() is an inbuilt function in jQuery which is used to select the first element from the specified elements. Syntax:   $(selector).first() Here selector is the… Read More
The not() is an inbuilt function in jQuery which is just opposite to the filter() method. This function will return all the element which is… Read More
The jQuery add() method is used to add element to the existing group of elements. This method can add element to the whole document, or… Read More
jQuery is a very powerful framework of JavaScript. With jQuery, we can use do chaining which means to chain together multiple methods in a single… Read More
The eq() method is an inbuilt method in jQuery which is used to locate the selected elements directly and returns an element with specific index. … Read More
The height() method is an inbuilt method in jQuery that is used to check the height of an element but it will not check the… Read More