faqts : Computers : Programming : Languages : JavaScript : Browser Settings

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

10 of 31 people (32%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

When passing a string between pages using the 'escape' and 'unescape' commands, how can i hide the information being passed in the address bar

Jul 30th, 2001 06:21
Darren Nelson, Mark Chambers,


Instead of passing the data from one page to another (or one window to 
another) try storing the data in the cookies file. The calling page can 
serialize and store the data, then the target page can deserialize it 
and use it.

Darren