Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9021493
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T05:16:07+00:00 2026-06-16T05:16:07+00:00

I was trying to display a jQuery UI dialog with a spinner GIF inside

  • 0

I was trying to display a jQuery UI dialog with a spinner GIF inside it. Originally the GIF coded statically in HTML:

<div id="LoadingDiv" style="display:none; text-align: center">
    <img alt="Loading..." src='/Content/images/ajax-loader.gif' />
</div>

However there were known issues in IE that prevent GIF images to be animated correctly in a jQuery UI dialog. So I have resorted to dynamically append a img element to the div element:

$("#FilterForm").submit(function (){
    $("#LoadingDiv").html($("<img>").attr({ 
        'id':'spinner', 
        'alt':'Loading...',
        'src': '@Url.Content("~/Content/images/ajax-loader.gif")'
    }));
    $("#LoadingDiv").dialog("open");
});

This created some strange bugs to the system. When the form is submitted, sometimes the GIF is displayed and sometimes it isn’t. Can somebody help?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T05:16:08+00:00Added an answer on June 16, 2026 at 5:16 am

    Solved by implementing a workaround using Spin.js. No GIF needed and better cross-browser compatibility.

    The code:

    $("#FilterForm").submit(function (){
        var opts = {
            top: '10px',
            left: '50px',
            length: 2,
            width: 3,
            radius: 7
        };
        var loadingDiv = document.getElementById("LoadingDiv");
        var spinner = new Spinner(opts).spin(loadingDiv);
    
        $("#LoadingDiv").dialog("open");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to display jquery's dialog confirmation before submitting a form. But I
I have the following ASP.NET markup: <div id=myForm title=My Form style=display: none> <span>You can
I'm trying to use the jQuery UI Dialog to display a confirmation prior to
We are trying to make a register form inside a jQuery dialog, but the
I am new to JQuery and trying to display a Yes/No confirmation dialog box
I am trying to open a jQuery dialog with no buttons to display with
I am trying to display a button using jQuery template. The code is as
I'm trying to display some data from a list sharepoint and then using jquery
I am trying to use the jQuery each function (line 5) to display the
i'm trying to intercept ajax requests with jquery, to display a waiting message like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.