Copyright © tutorialspoint.com
This method creates an HTML anchor that is used as a hypertext target.
string.anchor( anchorname ) |
Here is the detail of parameters:
anchorname: Defines a name for the anchor.
Returns the string having anchor tag.
<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.
Copyright © tutorialspoint.com