<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function()
{
$("p").click
(
function()
{
alert("ok");
}
);
});
</script>
</head>
<body>
<p>click on me</p>
</body>
</html>