|
Help Needed
Hi guys I know this is maybe a little cheeky but I was wondering if anyone could help me with the JavaScript that I am going to post below. I am very new to this whole thing and just need a helping hand. There are a couple of things missing from it, I have these details also, but I am unsure as to where they are meant to go. And what I have to do to make it work.
Basically what it is about is its part of a program that will output a simple customised greeting card message. Thanks in advance for any help that you might be able to give me.
The items that are missing out of the program are 'occasion' and also 'name of the sender'. Now below is the program that I am trying to correct.
<html>
<head>
<title>Greetings</title>
<script language = "JAVASCRIPT">
ver recipient;
// Declare variables here
recipient =
window.prompt ('Please enter the name of the recipient', '');
// Prompt for the other values here
// Output the customised greeting here
</script>
</head>
<body>
</body>
</html>
|