คลิกเพื่อดูผล
ตัวอย่างโค้ด
<html> <head> <title>demo</title> <script type="text/javascript" src="js/jquery-1.2.6.min.js"></script> <script language="javascript"> $(function(){ $("a#demo").click(function(){ // เมื่อลิ๊งค์ หรือ แท็ก <a> ที่มี id เท่ากับ demo ถูกคลิก alert("Hello World"); // ให้แสดงข้อความ Hello World }); }); </script> </head> <a href="javascript:void(0)" id="demo">คลิกเพื่อดูผล</a> <body> </body> </html>