<style>
body,html{height:100%;}
</style>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(e) {
$("body").one("click", function() {
alert("This will be displayed only once.");
});
});
</script>