views:

90

answers:

2

Prototype version

 var hash = new Hash();
 hash.set("date_query", "test");
 hash.set("date_search", "1");

Jquery?

+1  A: 

jQuery doesn't have Hash tables.

Yuriy Faktorovich
A: 

You could use jshashtable, a standalone JavaScript implementation of hash table. Disclaimer: I wrote it.

Tim Down