On Monday, August 4, 2014 12:12:43 PM UTC-4, G Z wrote:
>
>
>
> $('#queryForm').on("submit", function () {    $('#loading').show();});
> </script>
>
 

> However it doesn't show the div tag when I click any of my buttons.
>
 
According to jquery docs;  http://api.jquery.com/submit/

$('#queryForm').submit(function () {    $('#loading').show();});

Should work.

-Joe

-- 
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 [email protected].
To post to this group, send email to [email protected].
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/1b8e55d4-7044-46ff-80c3-0dff412d0d9e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to