Hi there, trying to load some asp pages w\using load and it works in
FF and Chrome but not in IE (6 or 7).  Is this a known problem or is
there something up with my code?

Thanx ahead of time

<pre>
$(document).ready(function()
                {

                        $("#nouns").change(function() {
                                //$("#loadermodifier").show();
                                
$("#modifiers").load("includes/get_modifiers.asp",{noun: $
("#noun").val() }, function(){ $("#loadermodifier").hide(); });
                        });

                        $("#nouns").load("includes/get_nouns.asp", function(){ $
("#loadernoun").hide(); });
                        $("#uom").load("includes/read_uom.asp", function(){ $
("#loaderuom").hide(); });
                });

Reply via email to