On Sun, Jan 5, 2014 at 7:49 AM, fabricio <ponto...@gmail.com> wrote:
> I am needing to display a wait message while processing perform some process
> on the server anyone could help me

You could create the wait message in a class like this:

<span class='loadMsg' style='display: none; '> ... loading </span>

Then at the beginning of your template do:

$('.loadMsg').show();

and then:

window.onload = function() {
    $('.loadMsg').hide();
}

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACwCsY4QWoHYr8BZfgiG-PMYOS4wcxqAJSTES%2BYf5zZ_hBQ0-w%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to