Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Which jQuery events do not bubble?
Some of the jQuery events, do not bubble such as mouseenter do not bubble. Let us see an example of such events.
Example
You can try to run the following code to learn how to work with jQuery events, which do not bubble,
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").mouseenter(function(){
$("p").css("background-color", "red");
});
$("p").mouseleave(function(){
$("p").css("background-color", "blue");
});
});
</script>
</head>
<body>
<p>Demo Text - Keep the mouse pointer here.</p>
</body>
</html> Advertisements
