Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [Jagerman] Global to check if cookies are enable ?

Quote Reply
Re: [Jagerman] Global to check if cookies are enable ? In reply to
Thank you, Jason.

I finally found a way to do this with a javascript:

Code:
<SCRIPT LANGUAGE="javascript">
cookiestring = "test=1;"
document.cookie = cookiestring;
if (document.cookie) {
cookiestring = "test=1;"
document.cookie = cookiestring;
document.write ("something.....");
}
</SCRIPT>


That works fine for me.

Thank you again! Smile

François
Subject Author Views Date
Thread Global to check if cookies are enable ? Franco 2219 Jul 6, 2003, 8:39 AM
Thread Re: [Franco] Global to check if cookies are enable ?
Jagerman 2122 Jul 6, 2003, 3:10 PM
Post Re: [Jagerman] Global to check if cookies are enable ?
Franco 2103 Jul 7, 2003, 10:51 PM