-
Notifications
You must be signed in to change notification settings - Fork 0
/
mouse-event.html
41 lines (37 loc) · 1.11 KB
/
mouse-event.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mouse Events using jQuery</title>
<script src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
</head>
<script>
$(document).ready(function(){
// $("p").click(function(){
// alert("Mouse is clicked")
// })
$("p").mouseenter(function(){
alert("Mouse is entered")
})
// $("p").mouseleave(function(){
// alert("Mouse is leaved")
// })
// $("p").mousedown(function(){
// alert("mouse down")
// })
// $("#para").mouseup(function(){
// alert("mouse up")
// })
})
</script>
<body>
<div class="container">
<h2 id="head">This is heading </h2>
<p id="para">This is the line to hide</p>
<p id="para">This is the another to hide</p>
</div>
</body>
</html>