<div id="content"></div>
<script>
function show()
{
$.ajax({
url: "ajax.php",
cache: false,
success: function(html){
$("#content"
.html(html);
}
});
}
</script>
Как сделать, чтобы функция show выполнялась при клике на объект <div id="send">Send</div> ?