Definition and Usage The blink() method is used to display a blinking string. Syntax stringObject.blink() Tips and Notes Note: Th...
Definition and Usage
The blink() method is used to display a blinking string.Syntax
stringObject.blink() |
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> |