Click Event jQuery
Example
<!DOCTYPE html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"> </script> </head> <body> <div>Click me</div> <script> $("div").click(function() { alert("div clicked"); }); </script> </body> </html>