HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <p onmouseup="myFunction()">Press and release the mouse button</p> <script> function myFunction(){ alert("You pressed and released"); } </script> </body> </html>
OUTPUT
×

Save as Private