Bruce,
Give this a shot:

$.fn.ajaxSubmit3 = function() {
    this.submit(function(){
        $("div#indicate").show();
        $("div#updateinfo").fadeOut();
        var params = $("#processupdate").formdata();
        $.post(this.getAttribute("action"), params, function(text){
            $("#indicate, #enquiryinfo").hide();
            $("#updateinfo").html(text).fadeIn("slow");
            
$('div#updateinfo').highlightFade({color:'yellow',speed:1000,iterator:'linear'})
        });
        return false;
    });
}

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to