var myHash = new Hash({
aProperty: '10',
anotherProperty: '20'
});
var myotherHash = new Hash({
aProperty: '100',
anotherProperty: '200'
});
test = [myHash, myotherHash];
$("testdiv").store('test', test);
console.log("test: %o", $("testdiv").retrieve('test'));
This works flawlessly, thanks for pointing me in the right direction !
Cheers,
Jan
On 24 Jan., 19:23, Roman Land <roman.l...@gmail.com> wrote:
> Not an answer but more of a suggestion, why not use a Hash? (or array/
> object)
>