mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
21 lines
547 B
HTML
21 lines
547 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
alert("It loaded!");
|
|
|
|
document.getElementById("my_div").addEventListener("mousedown", function() {
|
|
alert("Mouse down!");
|
|
});
|
|
document.getElementById("my_div").addEventListener("mousemove", function() {
|
|
alert("Mouse move!");
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="my_div">Hello there!</div>
|
|
</body>
|
|
</html>
|