|
JavaScript blink() Method
Complete String Object Reference
Definition and Usage
The blink() method is used to display a blinking string.
Syntax
Tips and Notes
Note: This method does not work
in Internet Explorer.
Example
In this example "Hello world!" will be displayed as blinking text:
<script type="text/javascript">
var str="Hello world!";
document.write(str.blink());
</script>
|
|
Complete String Object Reference
|