Julio Vedovatto
Julio Vedovatto

Reputation: 198

HTML 5 DOM Storage in IE6/7

Anyone knows a better way to storage data in IE6/7 using HTML DOM Storage? I found the ExDomStorage But it limits data to 64Kb.

Upvotes: 0

Views: 437

Answers (2)

Thomas
Thomas

Reputation: 11

Take a look at the userData behavior at:

http://msdn.microsoft.com/en-us/library/ms531424%28v=vs.85%29.aspx

It doesn't provide as much flexibility as the DOM storage mechanism defined by the HTML 5 specification, but should be sufficient for most operations.

As a caveat, for security reasons, I don't recommend making use of this on anything beyond intranet sites or applications.

Cheers!

Upvotes: 1

ankitjaininfo
ankitjaininfo

Reputation: 12362

Refer MooTools

Upvotes: 0

Related Questions