Pages

Javascript String - link() Method

4/7/14

Description:

This method creates an HTML hypertext link that requests another URL.

Syntax:

string.link( hrefname )
Here is the detail of parameters:
  • hrefname: Any string that specifies the HREF of the A tag; it should be a valid URL.

Return Value:

  • Returns the string with <a> tag.

Example:

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

var str = new String("Hello world");
var URL = "http://www.tutorialspoint.com";

alert(str.link( URL ));

</script>
</body>
</html>
This will produce following result:
<a href="http://www.tutorialspoint.com">Hello world</a>

No comments:

Post a Comment

Related Posts