2017-06-28 01:27:22 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Button test</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-07-22 03:29:31 +00:00
|
|
|
<script src="mouse-helper.js"></script>
|
2017-06-28 01:27:22 +00:00
|
|
|
<button onclick="clicked();">Click target</button>
|
|
|
|
<script>
|
|
|
|
window.result = 'Was not clicked';
|
|
|
|
function clicked() {
|
|
|
|
result = 'Clicked';
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|