up vote 0 down vote favorite
share [g+] share [fb]

I have put together the following mootools script

 window.addEvent('domready', function() {
    var shouts = "timed.php";
    var log = $('log_res');
    function updateData (url,target)
    {
    	new Ajax(url,{
    	method: 'get', 
    	update: $(target), 
    	onComplete: function() {
    	log.removeClass('ajax-loading');}  }).request();
    	log.empty().addClass('ajax-loading');
    }

    var update = function(){ updateData ( shouts, 'log_res' ); };
    update();			// call it immediately
    update.periodical(10000); 	// and then periodically

 });

heres the html

<div id="AJAX">
    <h3>Ajax Response</h3>
    <div id="log_res">exercise</div>
</div>

its using moo 1.1.

The above works fine, the page loads then the ajax request kicks in div id log_res has a class of ajax-loading whilst its updating, and when its finished the text exercise in the div is replaced with whatever the ajax has returned (yippee). But I want to put some custom HTML into the div WHILST the page is loading, because the ajax-loading class is not enough to contain the information, i also want to put a spinny flasher into the div whilst the ajax request is retrieving the information. Hope that makes sense!

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

With MooTools 1.2, this works as requested:

function updateData (url, target)
{
  var target = $(target);
  target.empty().addClass('ajax-loading');
  target.innerHTML = "Loading...";
  new Request({
    url: url, 
    method: 'get',
    onComplete: function(responseText) {
      target.removeClass('ajax-loading');
      target.innerHTML = responseText;
    }
  }).send();
}

Since you are no fun and use MooTools 1.1, I must dig a little... Actually, I got it working using nearly the same setup as you have (notice I use target instead of log, which was defined outside of the scope of this function):

function updateData (url, target)
{
  var target = $(target);
  target.empty().addClass('ajax-loading');
  target.innerHTML = "Loading...";
  new Ajax(url, {
    method: 'get',
    update: target,
    onComplete: function() {
      target.removeClass('ajax-loading');
    }
  }).request();
}
link|improve this answer
Thanks Tomalak, I think I was not clear enough. Both my original and your new code work well :) When udpating the div the class is changed to ajax loading, but I also want to add the word loading until it has loaded too. That is where I am having problems. I will update my original post – Paul M Oct 27 '08 at 19:37
Added code to do that. If your "timed.php" is reasonably fast, you won't see much of the "Loading..." text anyway. – Tomalak Oct 28 '08 at 9:11
Many thanks for you help tomalak, I had to use target.innerHTML = "loading but it worked in the end :) – Paul M Oct 29 '08 at 21:03
Glad to hear. I'll correct the code sample to reflect that fact.. – Tomalak Oct 29 '08 at 22:07
feedback

Can you not do something like this:

function updateData (url, target)
{
  var target = $(target);
  target.innerHTML = 'Please wait...';

  //and the rest of the function
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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