Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Sinatra application. There is an page where I need to make an ajax request. I want it to look like Gmail ajax div looks when I click on "Inbox", "Drafts" or send a email to someone: yellow box which is always on the top.

How do I achieve that?

share|improve this question
You mean the Sending ... box when you send emails? – mgamba Jan 8 at 15:03
Yes, exactly. But it's not at the top on a page. The box "Loading..." is there, this is what I need. – Alan Dert Jan 8 at 16:03

closed as not a real question by Andrew Marshall, CodeGnome, Dharmendra, Niranjan Kala, Anup Cowkur Jan 9 at 5:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

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.

share|improve this answer
No, I'm not taking about css. I'm asking how to show it while a request is executing and then how to hide it. – Alan Dert Jan 8 at 17:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.