$.post('/ur.l'
, jQuery('selectors').serialize()
+ '&textareaname=" + escape( $("#textarea").val() )
, function(data) { ... }
}
);
$.post('/ur.l'
, {'foo':'bar', 'foobar','qazbar'}
, function(data) { ... }
);
Problems
Is it possible to combine the object into
{...}the jQuery serialization?jQuery doesn't seem to serialize textareas, is there a better method than the above? I've tried and see that the textarea is in the jQuery object, but the text is blank:
jQuery('input, textarea').serialize()