Source-Repo: https://github.com/servo/servo Source-Revision: 65d4b12bf20783ea784f1c61f4b33ec0fc975f4f
15 lines
244 B
HTML
15 lines
244 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> |