EN
jQuery - mouse double click (dblclick) event
10 points
In this article, we would like to show you how to create the double click event using jQuery.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
5
</head>
6
<body>
7
<button id="button">Click me double times!</button>
8
<script>
9
10
$(document).ready(function() {
11
var button = $('#button');
12
13
button.dblclick(function() {
14
button.text('Button double clicked!');
15
});
16
});
17
18
</script>
19
</body>
20
</html>
xxxxxxxxxx
1
2
<html>
3
<head>
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
5
</head>
6
<body>
7
<button id="button">Click me double times!</button>
8
<script>
9
10
$(document).ready(function() {
11
var button = $('#button');
12
13
button.on('dblclick', function() {
14
button.text('Button double clicked!');
15
});
16
});
17
18
</script>
19
</body>
20
</html>
xxxxxxxxxx
1
2
<html>
3
<head>
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
5
</head>
6
<body>
7
<button id="button">Click me double times!</button>
8
<script>
9
10
$(document).ready(function() {
11
var button = $('#button');
12
13
button.on({
14
'dblclick': function() {
15
button.text('Button double clicked!');
16
}
17
});
18
});
19
20
</script>
21
</body>
22
</html>