I'm trying to use a function directly in the attribute onclick of my button, but i have always an error. Example:
<button onclick="function() { alert('hello'); }">Click me</button>
And the result is:
Uncaught SyntaxError: Unexpected token (
I'm trying to use a function directly in the attribute onclick of my button, but i have always an error. Example:
<button onclick="function() { alert('hello'); }">Click me</button>
And the result is:
Share Improve this question edited Jan 17, 2019 at 22:50 Sebastian Simon 19.6k8 gold badges61 silver badges84 bronze badges asked Apr 20, 2017 at 14:58 StormStorm 731 gold badge1 silver badge13 bronze badges 1Uncaught SyntaxError: Unexpected token (
-
All you're trying to do is define a function, which wouldn't visibly acplish anything anyway. Just invoke the code you're trying to invoke:
onclick="alert('hello')"
If you want to define a function, do that separately in your JavaScript code and just invoke the function inonclick
. (Or, even better, attach it as a handler from the JavaScript code so you're not writing in-line JavaScript in your HTML.) – David Commented Apr 20, 2017 at 15:03
4 Answers
Reset to default 4no need to make it a function, just list the statements:
<button onclick="alert('hello');alert('hello 2');alert('hello 3');">Click me</button>
Below code will allow you to add function in your onclick attribute.
Click me
<button onclick="javascript:(function() { alert('hello'); })()">Click me</button>
You should write your code like this.
<button onClick="alert('hello');">Click me</button>
You can do things like that if you want all of this in your html file
<script>
function hello(){
alert('hello')
}
</script>
<button id="bait" onClick="hello()">
Click me
</button>
<!-- OR -->
<!-- <button onclick="javascript:(() => {alert('hello')})()"> -->
<!-- But it's good for short function only -->
But I think you should use jQuery instead (if you can)
If you want to do so, just add a clickHandler function:
$("#bait").on("click", () => {
alert('hello')
})
<script type="text/javascript" src="http://ajax.googleapis./ajax/libs/jquery/1.8/jquery.min.js"></script>
<button id="bait">Click me </button>
A bit overkill for a prompt but I suppose you ask this for a trickier function so it'll be easier overall imo