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.
18 lines
389 B
18 lines
389 B
<html>
|
|
<head>
|
|
<title>DOM Change event handling</title>
|
|
<script type="text/javascript">
|
|
document.addEventListener("DOMNodeInserted",
|
|
function(ev) {
|
|
console.log("\n\nHELLO WORLD!\n\n");
|
|
console.log(ev);
|
|
console.log("\n\n");
|
|
}, false);
|
|
console.log("Moooo!");
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div>I got inserted</div>
|
|
</body>
|
|
</html>
|