Skip to content

Tag Archives: jQuery-Events

jQuery is the JavaScript library known for its lightweight, fast, and cross-platform features. It is an open-source library that goes by the motto “Write less,… Read More
In this article, we will learn two methods that are related to jQuery events of DOM when the user or the program triggers an event.… Read More
In this article, we are going to learn, how can we attach a method to an HTML element event using jQuery. There are various events… Read More
What is jQuery? jQuery is an open-source, feature-rich JavaScript library, designed to simplify the HTML document traversal and manipulation, event handling, animation, and Ajax with… Read More
In this article, we will create an example of how to add, edit and delete table rows in jQuery. For creating this functionality we need… Read More
The jQuery is lightweight, and it has a lot of features like HTML/DOM manipulation, CSS manipulation, HTML event methods, effects and animations, AJAX, utilities. Many… Read More
In this article, we will find how to set a different color for each letter in a text field using jQuery? Approach: To do this… Read More
An event refers to the actions performed by the site visitor during their interactivity with the website (or webpage). There can be various types of… Read More
This article will explain different mouse events occurring based on mouse positions on a particular HTML element. Mouse Events in jQuery: mouseenter and mouseleave mouseup… Read More
Lose focus event can occur mainly through focusout() and blur() method. Both of them lose focus when the method gets triggered. These events differ slightly… Read More
The HTML tag <input type =”color”> provides a user interface element, that let the user specify the color with the help of the visual color… Read More
In this article, we are going to discuss 2 methods of logging key-presses in web technologies using vanilla JavaScript as well as Jquery. We will… Read More
The jQuery event.stopPropagation() method is an inbuilt method which is used to stop the windows propagation. In the DOM tree when setting an event with… Read More
The jQuery event.isPropagationStopped() Method is used to check whether the object event.stopPropagation() is called or not. If event.stopPropagation() is called then it returns true otherwise… Read More
The jQuery event.data property is used to contain the optional data which is passed to an event method. The data passed when the currently executing… Read More