Pages

Javascript String - anchor() Method

4/7/14

Description:

This method creates an HTML anchor that is used as a hypertext target.

Syntax:

string.anchor( anchorname )
Here is the detail of parameters:
  • anchorname: Defines a name for the anchor.

Return Value:

  • Returns the string having anchor tag.

Example:

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

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

alert(str.anchor( "myanchor" ));

</script>
</body>
</html>
This will produce following result:
<a name="myanchor">Hello world</a>

No comments:

Post a Comment

Related Posts