Update chapter 9

This commit is contained in:
LSvekis 2021-06-17 16:04:58 -04:00 committed by GitHub
parent da5ef8817d
commit e5bf1d2b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,16 @@
<div >
<button onclick="message(this)">Button 1</button>
<button onclick="message(this)">Button 2</button>
</div>
<script>
function message(el){
console.dir(el);
}
</script>
<!doctype html>
<html>
<head>