Files
JavaScript-from-Beginner-to…/Chapter 11/Code Samples/ch11-evileval.html
T
2021-11-25 14:40:42 +01:00

10 lines
154 B
HTML
Executable File

<html>
<body>
<input onchange="go(this)"></input>
<script>
function go(e) {
eval(e.value);
}
</script>
</body>
</html>