Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a function and call that function on the click of a button. There are many guides on the internet to do this but it just didn't work. (I'm a beginner)

<script type = "javascript/text">
var name = function()
name = prompt ("Who are you?", "");
alert ("hello" + " " + name);
</script>

How do i call "name"?

share|improve this question
4  
type must be type = "text/javascript" – AlecTMH Jan 28 at 16:47
3  
There are syntax errors in your code. I recommend to read a JavaScript tutorial, such as eloquentjavascript.net. Then read about event handling: w3.org/wiki/Handling_events_with_JavaScript. Stackoverflow is not the right place to learn the language. – Felix Kling Jan 28 at 16:50
@FelixKling Not as much as one would think: it just sees an empty statement after function(). Curly braces aren't required. Sadly JS terminates statements on the end of a line, otherwise it would have been fine. – 11684 Jan 28 at 16:58
@11684: I get SyntaxError: Unexpected identifier. The braces are not optional for function declarations/expressions (es5.github.com/#x13). – Felix Kling Jan 28 at 17:51
Really? Thanks! @FelixKling – 11684 Jan 28 at 20:02

1 Answer

I changed your code into this:

<script>
     var name = prompt ("Who are you?", "");
    alert ("hello" + " " + name);
</script>

This should work. You don't even need a function here.

But if you want to store a function in a variable and then call it, just do:

var myFunction = function() {
    // function body
}
myFunction(); // calling it!
share|improve this answer
doesn't work because of type="javascript/text" instead of type="text/javascript" – Stuart Jan 28 at 21:39
Oops! @Stuart Fixed! – 11684 Jan 29 at 8:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.