หากต้องการเรียกใช้ฟังก์ชัน JavaScript ในกล่องแจ้งเตือน คุณสามารถลองเรียกใช้โค้ดต่อไปนี้ -
ตัวอย่าง
<!DOCTYPE html> <html> <body> <script> function myFunction(warning) { alert(warning); catchedAlert(); } function catchedAlert() { alert('Alert called!'); } </script> <button onclick="myFunction('This is an alert box!')">Click me!</button> </body> </html>