HTML DOM updateInterval Attribute

Definition and Usage

The updateInterval attribute can be set or returned to set the refresh rate of the screen.

Syntax

screen.updateInterval=number

Example

<html>
<body>
<script type="text/javascript">
document.write("<p>Update Interval: ")
document.write(screen.updateInterval + "</p>")
</script>
</body>
</html>