Description: This attribute contains the last value returned by an event handler that was triggered by this event, unless the value was undefined.
<!DOCTYPE html>
<html>
<head>
  <script src="https://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<script>$("p").click(function(event) {
  return "hey"
});
$("p").click(function(event) {
  alert( event.result );
});  </script>
</body>
</html>"hey"