mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
15 lines
266 B
HTML
15 lines
266 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<textarea id="textarea">
|
|
</textarea>
|
|
</body>
|
|
<script>
|
|
var area = document.getElementById('textarea');
|
|
area.addEventListener('input', function() {
|
|
alert('input detected');
|
|
});
|
|
</script>
|
|
</html>
|