susie123
09-07-2007, 02:00 PM
I am new to JS and have tried desperately to work this problem out myself but no joy. I attach a file with the following code:
<html>
<head>
<title> Create own function exercise - Try It Yourself!</title>
<script language="javascript">
function webLink(message)
{
alert(message);
}
</script>
</head>
<body>
<form name="form1">
Enter your name here -
<input type="text" name="Name" size="14" onClick="webLink('Enter your name')">
<p>
Enter your favorite website here - www.
<input type="text" name="www." size="30" onClick="webLink('Enter your favourite website address')">
<p>
<script language="javascript">
var welCome="Welcome " + webLink;
var webSite="form1.www.";
document.write("Welcome " + name + ". Please go to " + webSite);
</script>
</form>
</body>
</html>
All I need now is for the visitorīs name to appear in the browser screen after the word "Welcome" and for their favourite website address to appear in the sentence, "Please go to www....", making that a hyperlink as well.
The prompt windows and everything else is just how I want it.
Thank you very much in advance.
S
<html>
<head>
<title> Create own function exercise - Try It Yourself!</title>
<script language="javascript">
function webLink(message)
{
alert(message);
}
</script>
</head>
<body>
<form name="form1">
Enter your name here -
<input type="text" name="Name" size="14" onClick="webLink('Enter your name')">
<p>
Enter your favorite website here - www.
<input type="text" name="www." size="30" onClick="webLink('Enter your favourite website address')">
<p>
<script language="javascript">
var welCome="Welcome " + webLink;
var webSite="form1.www.";
document.write("Welcome " + name + ". Please go to " + webSite);
</script>
</form>
</body>
</html>
All I need now is for the visitorīs name to appear in the browser screen after the word "Welcome" and for their favourite website address to appear in the sentence, "Please go to www....", making that a hyperlink as well.
The prompt windows and everything else is just how I want it.
Thank you very much in advance.
S