0
How to get an interactive html element to run a js code
I Wil like, for example, to display an alert box why a user taps on a my <button> element
2 ответов
0
<button onclick="urfunc()" . . .>
...
<script>
function urfunc(){
alert("Oh hi mark");
}
</script>
0
Thanks