0
Hii guys can any one give me code for a JavaScript alert??
actually I am making a quiz for I want to answer pop up when any one tap on some icon or a click button so please help me
3 Answers
+ 21
<button type="submit" onclick="func()">click</button>
<script>
function func(){
alert("Hi");
}
</script>
+ 2
alert ("Alert!")
0
thanks