mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
19 lines
366 B
HTML
19 lines
366 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var x = 0;
|
|
alert("Interval begin");
|
|
var intervalID = setInterval(function() {
|
|
if (x < 10) {
|
|
alert("interval " + x);
|
|
x += 1;
|
|
} else {
|
|
clearInterval(intervalID);
|
|
alert("Interval deleted");
|
|
}
|
|
}, 300);
|
|
</script>
|
|
</body>
|
|
</html>
|