I have a site thats uses jQuery.load().   However the method stopped
working for me correctly when the new filter logic was added.

If I used jQuery v1.1.3.1 it works.  Anything new than this version
does not behave correctly.  I am using the following code:


var loc = 'http://www.ludoholic.com/my.games';
...
function refreshPage(id, parameters)
{
    $("#" + id).css("cursor", "wait");
    $("#content").load(loc + "?refresh=1&" + parameters, null,
        function()
        {
            $("#" + id).css("cursor", "auto")
        }
    );
}


The problem is that only a partial amount of the generated HTML is
being returned, meaning somehow I am kicking off the filter
functionality within the jQuery.load() method, although I don't know
how with the above code.

Any help would be greatly appreciated.

Ed

Reply via email to