SyntaxFix
Write A Post
Hire A Developer
Questions
Button inputs don't have a submit event. Try attaching the event handler to the form instead:
<script type="text/javascript"> $('#login_form').submit(function() { $('#gif').show(); return true; }); </script>