JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Javascript String - anchor() Method
Description:
This method creates an HTML anchor that is used as a hypertext target.
Syntax:
string.anchor( anchorname )
|
Here is the detail of parameters:
Return Value:
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>
|
To understand it in better way you can Try it yourself.
|
|
|