JavaScript link of a string object

We can declare a string and add a hyper link to the string.
my_string= new String("Welcome to plus2net.com");
document.write(my_string.link("https://www.plus2net.com"));
We will modify the above code a bit and or change dynamically the associated link of the string by clicking a radio button. You will visit google or Yahoo based on the radio button you clicked.
Here is the code
<html>
<head>
<title>(Type a title for your page here)</title>
<script type="text/javascript">
function linkme(str){
my_string= new String("Take me to my Search Engine");
if(str=="google"){
document.write(my_string.link("https://www.google.com"));}
else{document.write(my_string.link("https://www.yahoo.com"));}
}

</script></head>
<body>

<input type=radio name=engine value='Google' onClick="linkme('google')";>Google
 <input type=radio name=engine value='Yahoo' onClick="linkme('Yahoo')";> Yahoo

</body>
</html>
Demo of adding link to string
JavaScript String Reference Uppercase to lower case by toLowerCase() method
Subscribe to our YouTube Channel here



plus2net.com










We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer