Files
JavaScript-from-Beginner-to…/Chapter 09/Code Samples/ch9-click.html
T
brightboost 67a8d8a7a0 reorganizing
2021-12-02 21:21:10 +01:00

24 lines
382 B
HTML
Executable File

<!-- <html>
<body>
<div id="one" onclick="alert('Auch! Stop it!')">Don't click here!</div>
</body>
</html>
<html>
<body>
<script>
function stop(){
alert("Auch! Stop it!");
}
</script>
<div id="one" onclick="stop()">Don't click here!</div>
</body>
</html> -->
<html>
<body>
<div id="one">Don't click here!</div>
</body>
</html>