The hasClass() is an inbuilt method in jQuery which check whether the elements with the specified class name exists or not. Syntax: $(selector).hasClass(className); Parameter: It… Read More
Category Archives: JQuery
The jQuery hover() is an inbuilt method which is used to specify two functions to start when mouse pointer move over the selected element. Syntax:… Read More
The jQuery click() is an inbuilt method that starts the click event or attach a function to run when a click event occurs. Syntax: $(selector).click(function);… Read More
The jQuery event.relatedTarget is an inbuilt property that is used to find which element is being entered or gets exit on mouse movement. Syntax: event.relatedTarget… Read More
The jQuery event.which is an inbuilt property in jQuery which is used to return which keyboard key or mouse button was pressed for the event.… Read More
The jQuery event.pageY is an inbuilt property that is used to find the position of the mouse pointer relative to the top edge of the… Read More
The delay() method is an inbuilt method in jQuery that is used to set a timer to delay the execution of the next item in… Read More
The data() is an inbuilt method in jQuery which is used to attach data or get data for the selected elements. Syntax: $(selector).data(para1); Parameter : It… Read More
The removeData() is an inbuilt method in jQuery which is used to remove those data which are previously set with the data() method. Syntax: $(selector).removeData(args);… Read More
The jQuery dblclick() is an inbuilt method that is used to trigger the double-click event to occur. This method occurs when the selected element will… Read More
The jQuery clearQueue() method removes all items from the queue that have not yet been run. Note that when a function has started to run,… Read More
The animate() method is an inbuilt method in jQuery which is used to change the state of the element with CSS style. This method can… Read More
The andSelf( ) is an inbuilt method in jQuery which is used to add the previous set of elements to the current set. This method… Read More
The jQuery event.type is an inbuilt property which is used to return which event type is started. Syntax: event.type Parameter: It does not accept any… Read More
The jQuery event.pageX is an inbuilt property which is used to find the position of the mouse pointer relative to the left edge of the… Read More