View Single Post
Old 09-14-2012, 01:20 AM   PM User | #1
jolimk
New to the CF scene

 
Join Date: Sep 2012
Posts: 4
Thanks: 1
Thanked 0 Times in 0 Posts
jolimk is an unknown quantity at this point
Exclamation Hi need help with this code. javascript

This is my code i dont get it to work, i want it to ask the user how is he and depending on the answer alert something, and call the user by the name.

<HTML>
<body>
<script type="text/javascript">

var name=prompt("Hi. Whats your name?")

var mood=prompt("Hi " + name + ". How are you?")
var fine="fine"
var bad="bad"

if mood==fine
alert("Im glad you are fine, " + name)

if mood=bad
alert("Ooo. Thats bad, Im sorry. I hope you get better, " + name)


</body>
</SCRIPT>
</HTML>
jolimk is offline   Reply With Quote