You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
411 B
19 lines
411 B
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
function dump(text) {
|
|
document.getElementById('clicked').innerHTML = text;
|
|
}
|
|
</script>
|
|
<div style='overflow: scroll; width: 150px; height: 200px; background-color: yellow' id="outer">
|
|
<div style="width: 150px; height: 5000px; background-color: red;" onclick="dump('clicked')" id="inner">
|
|
</div>
|
|
</div>
|
|
<div>
|
|
Clicked: <span id='clicked'></span>
|
|
</div>
|
|
</body>
|
|
</html>
|