JQuery ajax onchange ($.load) & IE7 issue
Posted: Mon Jan 19, 2009 2:44 pm
Hi there, I seem to be running into a problem with my asp not loading. It's fired by an onchange event from another select list and works for FF and Chrome but not with IE7. I tried appending the random variable and I've also tried issuing a "no-cache" using asp. The page will load fine if I remove the onchange event so I'm sure theres no asp errors. Oh and firebug isn't reporting any errors.
Any ideas...think I'm Googled out.
TIA
Any ideas...think I'm Googled out.
TIA
Code: Select all
$(document).ready(function()
{
//$("#noun :selected").val();
//load nouns
$("#loadermodifier").hide();
$("#nouns").change(function() {
//$("#loadermodifier").show();
$("#modifiers").load("includes/get_modifiers.asp",{noun: $("#noun").val() }, function(){ $("#loadermodifier").hide(); });
});
$("#nouns").load("includes/get_nouns.asp?random=" + (new Date()).getTime(), function(){ $("#loadernoun").hide(); });
$("#uom").load("includes/read_uom.asp", function(){ $("#loaderuom").hide(); });
});