user2829113
user2829113

Reputation: 7

Make the whole body of an HTML page clickable

This is not a really difficult question, but how do you make the whole webpage clickable? I need this for my website I want that if you click anywhere a file is downloaded.

 body {
     ifclickanywhere - download file
 }

Upvotes: 0

Views: 3142

Answers (1)

Christian Fritz
Christian Fritz

Reputation: 21374

This should work

<body onclick="window.location.href=filename">
body text
</body>

Upvotes: 2

Related Questions