|
| JAVASCRIPT link() METHOD
The link() method converts a given string into a hyperlink. Takes the compulsory url as argument.
The general format is:
string.link(url);
Example:
<script type="text/javascript">
var string="Career Guidance";
document.write(string.link("http://www.toknowmore.net"));
</script>
The above will output:
See Also:
|
|