+ 1
Read description
Say if you have a choice(Form). How can you make it so when a user clicks it, an alert comes up.
3 Respostas
+ 10
You're welcome ^^
+ 9
There's a very simple example at the JS course here on SoloLearn:
<button onclick="show()">Click Me</button>
<script>
function show() {
alert("Hi there");
}
</script>
Go through the course, it will help you.
+ 1
thanks a lot! That really helped me out.😄