This is awesome Feed,
I was having the exact same problem.

The reason why it loads multiple times (it seems to me) is that jquery
is appending the new objects to the previous list it holds when the
function is run.
Not sure if this is a jquery error, or just the way things are
supposed to be.

However, I am having a problem unbinding the events tied to the
jqueryForm plugin.

my jqueryForm is called with the function addAJAX(), but using $
(this).unbind('addAJAX()') or $(this).unbind('addAJAX') does not seem
to work, nor does (this).unbind('submit').

Any ideas?
Here's my code
[code]
function addType(){$(".create").click(function(event) {
                id = this.id;
                var posTop = event.pageY;
                var posLeft = event.pageX;
                var formID = "#createForm";
                        $.ajax({
                                type: "GET",
                                url: "processes/addType.php",
                                data: "gid="+id,
                                success: function(response){
                                        $(formID).css({ position: 'absolute', 
top: posTop, left:
posLeft });
                                        $(formID).fadeIn("slow").html(response);
                                        addAJAX();
                                        cancelForm(formID);
                                        refreshClicking();
                                        }
                        });
                $(this).unbind('click');
        });
        };
// prepare the form when the DOM is ready
        function addAJAX(){
            var options = {
        target:        '#createForm',   // target element(s) to be
updated with server response
        success:  showResponse
    };

    // bind to the form's submit event
    $('#createForm').submit(function() {
        // inside event callbacks 'this' is the DOM element so we
first
        // wrap it in a jQuery object and then invoke ajaxSubmit
        $(this).ajaxSubmit(options);

        // !!! Important !!!
        // always return false to prevent standard browser submit and
page navigation
        return false;
    });


// pre-submit callback
        function showRequest(formData, jqForm, options) {
    // formData is an array; here we use $.param to convert it to a
string to display it
    // but the form plugin does this for you automatically when it
submits the data
        var queryString = $.param(formData);

    // jqForm is a jQuery object encapsulating the form element.  To
access the
    // DOM element for the form do this:
    // var formElement = jqForm[0];

          alert('About to submit: \n\n' + queryString);


    // here we could return false to prevent the form from being
submitted;
    // returning anything other than false will allow the form submit
to continue

        }

        // post-submit callback
        function showResponse(options)  {
        // for normal html responses, the first argument to the success
callback
        // is the XMLHttpRequest object's responseText property

            // if the ajaxSubmit method was passed an Options Object with the
dataType
            // property set to 'xml' then the first argument to the success
callback
            // is the XMLHttpRequest object's responseXML property

            // if the ajaxSubmit method was passed an Options Object with the
dataType
            // property set to 'json' then the first argument to the success
callback
            // is the json data object returned by the server


                $.ajax({

                                type: "GET",
                                url: "processes/getgroups.php",
                                data: "cid="+cid,
                                success: function(response2){
                                        $(".groups").html(response2);
                                $("#createForm").fadeOut("slow");
                                refreshClicking();

                                        }

                        });
        $(this).unbind('addAJAX');

        };
        };
[/code]

Reply via email to