Pages

Javascript String - blink() Method

4/7/14

Description:

This method causes a string to blink as if it were in a BLINK tag.

Syntax:

string.blink( )
Here is the detail of parameters:
  • NA:

Return Value:

  • Returns the string with <blink> tag.

Example:

<html>
<head>
<title>JavaScript String blink() Method</title>
</head>
<body>
<script type="text/javascript">

var str = new String("Hello world");

alert(str.blink());

</script>
</body>
</html>
This will produce following result:
<blink>Hello world</blink>

No comments:

Post a Comment

Related Posts