Core JavaScript 1.5 Reference:Global Objects:String:blink
From MDC
(Redirected from Core JavaScript 1.5 Reference:Objects:String:blink)
Non-standard
Contents |
[edit] Summary
Causes a string to blink as if it were in a BLINK tag.
| Method of String | |
| Implemented in: | JavaScript 1.0, NES2.0 |
[edit] Syntax
blink()
[edit] Parameters
None.
[edit] Description
Use the blink method with the write or writeln methods to format and display a string in a document. In server-side JavaScript, use the write function to display the string.
[edit] Examples
[edit] Example: Using string methods to change the formatting of a string
The following example uses string methods to change the formatting of a string:
var worldString="Hello, world"
document.write(worldString.blink())
document.write("<P>" + worldString.bold())
document.write("<P>" + worldString.italics())
document.write("<P>" + worldString.strike())
This example produces the same output as the following HTML:
<BLINK>Hello, world</BLINK> <P><B>Hello, world</B> <P><I>Hello, world</I> <P><STRIKE>Hello, world</STRIKE>