I haven't set breakpoints before - will follow that up now - but if it helps, my code is

function saveForm(ej) {
    var temp=new Array();
        alert(ej);
    temp=ej.split('*');
        var sct = temp[0];
        var fID = temp[1];
        alert('#'+sct);
        var str = $('#'+sct).serialize();
        alert(str);
    $.ajax({
        ....
}

ej comes in as the id of the form and a record identifier as formID*recordID

The first two alerts are "filled" appropriately, the third one is empty. Yet, if I drop the table structure around the form elements, everything works properly.

Thanks, Bruce


At 02:07 p.m. 4/10/2008, you wrote:

So are you calling it via $("#processthis").serialize()?

Serialize doesn't fire, you just call it. If you set a breakpoint in
Firebug in serialize, does it ever get there?

Reply via email to