In chrome, it would get an error:$('#click').click(location.reload);
But the following code is ok in firefox and chrome:Uncaught TypeError: Illegal invocation
Is this the problem of jQuery?$('#click').click(reload);
function reload(){location.reload();}