PDA

View Full Version : Cookie name in uppercase


sjoerd153938
02-03-2011, 12:24 PM
I need to write the cookie names in lowercase, but the scripts converts it to uppercase.

document.cookie = name.toUpperCase() + "=" + escape(value) +

I can change this to:
document.cookie = name.toLowerCase() + "=" + escape(value) +

But the next time an action is applied to the script has reset itself. How do I change it permanently to lowercase?

Jason Byrnes
02-04-2011, 08:02 AM
This is not a modification we can offer support for, the code would need to be changed in to many different places.