You can show the div before the request is sent and hide it again afterwards:
<html>
<head>
<script>
function ajax()
{
var xmlhttp;
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET","my_resource",true);
document.getElementById('yellowbox').style.display = 'block';
xmlhttp.send();
document.getElementById('yellowbox').style.display = 'none';
}
</script>
<style>
#yellowbox {
background-color: yellow;
display: none;
}
</style>
</head>
<body>
<div id="yellowbox">Retrieving Mail</div>
<button type="button" onclick="ajax()">Get mail</button>
</body>
</html>
For updates to the yellow box's content during the ajax call, you can use the onreadystatechange method of XMLHttpRequest.
Sending ...box when you send emails? – mgamba Jan 8 at 15:03