<div id="divTest1">hi</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script type="text/javascript">
function DocumentReady(event)
{
console.log(event.type);
}
$('#divTest1').click(DocumentReady(event));
</script>
質問:
chrome->console では、次のように表示されます:Uncaught TypeError: Cannot read property 'type' of undefined
では、上記のコードで何が問題になっているのでしょうか?