|
Wednesday Oct 11, 2006 The blink method can be used to make the string blink. This function only works in netscape. IE doesn’t support it yet.
<html>
<head>
<script type="text/javascript">
var str = new String("top")
str = str.blink("top")
document.write(str)
</script>
</head>
<body></body>
</html>
|