Validation plugin ajaxSubmit feedback issue with jQuery 1.4.2

Validation plugin ajaxSubmit feedback issue with jQuery 1.4.2

Hi

I am using the Validation plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/

I have decided to upgrade jQuery to 1.4.2 and now because of this the ajax submission feedback does not display. The display:none style is no longer removed from the div which displays the "Sending...." message.

I believe the code that takes care of this is the following:

  1. jQuery(function() {
            // show a simple loading indicator
        var loader = jQuery('<div id="loader">Sending...</div>')
                .css({})
                .appendTo("#result")
                .hide();
            jQuery().ajaxStart(function() {
                loader.show();
            }).ajaxStop(function() {
                loader.hide();
            }).ajaxError(function(a, b, e) {
                throw e;
            });












Is there some function in this that no longer works in the jQuery 1.4.2 as it worked fine in 1.3.2.

If I download the latest files from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ the ajaxSubmit-integration-demo.html still uses the jQuery 1.3.2, and I don't want to downgrade my entire sites jQuery :(

Anyone have any ideas as to whats causing/how to fix the problem?

Reply's always appreciated!


Many thanks