On 7/13/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
function serialize(s)
{
        serial = $.SortSerialize(s);
        alert(serial.hash);
        var hash = serial.hash;
        var temp = hash.replace(new RegExp( "sort1\[\]=", "gi" ),'');
};

Perhaps this will work:
function serialize(s) {
   serial = $.SortSerialize(s);
   var hash = serial.hash;
   var temp = hash.replace(/sort1\[\]=/gi,'');
};

If not, can you post some example hash's ?
~Sean

Reply via email to