I wish to serialize some session content for an Ajax request. Something similar to this:
var data = $.session("data").serialize();
It is for a standard jQuery ajax function like this:
$.ajax({
type: "POST",
url: "script.php",
data: data,
success: function() {
...
}
});
The serialize() only operates on form elements, so I am looking for something similar. Something that handles an array in a form representing a SESSION data array.
Does that exist or do I have to use a foreach loop to serialize the session content in a POST-friendly string manually?
$.session("data")refer to? Are you using a plugin and browser-sidesessionStorage? If it's jQuery-Session-Plugin, I don't know that$.session().serialize()will do anything, unless$.session('data')was itself an object/array to serialize as it is stored. – Jared Farrish Jul 28 '12 at 20:35