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 1049479
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:37:24+00:00 2026-05-16T16:37:24+00:00

The dreaded IE strike again. :( I’ve been developing an image selection and upload

  • 0

The dreaded IE strike again. 🙁

I’ve been developing an image selection and upload tool for Tiny MCE using modal dialogs over the last few days. During the script, jQuery’s load() function is used a number of times to load external HTML and insert it within a specified div element.

Everything has been going ok, even in IE, until about half an hour ago when I booted IE to check a change and all of the load() calls now do nothing. Where the content should appear in the document (having checked the developer tools), there is an empty div. There are no errors reported either. I can however, update the element manually by using html().

Up until a few hours ago it was all working fine in IE… now it does nothing. I’ve tried using full addresses (no such luck), have cleared the browser cache and tried sending no-cache headings from the php document being called by load(). Could it be some kind of caching issue?

Here is an example of the first of many similar calls:

//Create the dialog.
if ($('#imgPropDialog').length == 0) {
    $('body').append('<div id="imgPropDialog" class="jqmWindow"></div>');
    $('#imgPropDialog').load('system/admin/ajax/image_properties.php');
}

The imgPropDialog div is correctly added and appears within the document in IE. But the contents of image_properties.php never appears. Works fine in Chrome (and presumably every other browser than IE).

Any ideas before I start ripping out all my changes?
Thanks

  • 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-05-16T16:37:24+00:00Added an answer on May 16, 2026 at 4:37 pm

    You could quickly test whether or not caching is your problem by adding a random query string into the URL like so:

    $('#imgPropDialog').load('system/admin/ajax/image_properties.php?_=1234');
    

    If that makes it work, then caching is your problem. AJAX GET requests (which is what .load() uses) are cached by IE. If you want to stop caching on a per-request basis, you will need to use $.ajax() instead, which the cache option set to false. Alternately, you can generate your own random query string (which is all the jQuery cache: false option does anyways).

    Or, if you want to disable AJAX caching altogether, do this:

    $.ajaxSetup ({
        // Disable caching of AJAX responses */
        cache: false
    });
    

    See this question: Stop jQuery .load response from being cached

    EDIT

    Additional suggestion: try something like this and see what happens

    $.ajax({url: 'system/admin/ajax/image_properties.php', cache: false, success: function(data, textStatus) {
        alert($(data).html());
    }});
    

    Hopefully that alert will tell you what (if any) information is coming back. If it doesn’t pop up, either the request is failing somehow, or IE is somehow ignoring the no-cache.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been happily using HgSubversion for awhile and today I forgot to add
I have the dreaded permission denied issue when trying to create an object using
Trying to do the dreaded pagination using PDO, but I can't find an answer
I'm using a popup modal on my site but have an issue with the
I was getting the dreaded client found response content type of text/html but expected
This is one of my most dreaded C/C++ compiler errors: file.cpp(3124) : fatal error
I'm seeing the dreaded Code Sign error: The identity 'iPhone Developer' doesn't match any
I know. The dreaded ugly browser we don't want to support, but, it seems
I am fairly new to .NET C# development and recently started using LINQ to
I am trying to access the Exchange 2007 mail store programmatically using WebDAV. However,

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.