Wavoz
Oldschooler
- Joined
- Jul 10, 2011
- Messages
- 1,021
- Reaction score
- 84
Not sure if it's the right place to post, but i need some help asap.
I need to help out friend with some basic HTML and javascript website or he gets kicked from University....
So i need a prompt box to ask name and greet the person with that name...
I know how it works with button "<button onclick=" but what is the function for "on visit"?
I need the prompt box to pop up when site is first opened, not by clicking the button...
I need to help out friend with some basic HTML and javascript website or he gets kicked from University....
So i need a prompt box to ask name and greet the person with that name...
Code:
<script>
function myFunction()
{
var x;
var name=prompt("Please enter your name","Your name");
if (name!=null)
{
x="Hello " + name + "! How are you today?";
document.getElementById("demo").innerHTML=x;
}
}
</script>
I know how it works with button "<button onclick=" but what is the function for "on visit"?
I need the prompt box to pop up when site is first opened, not by clicking the button...