Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible for a 3rd party script to write cookies to the users computer?

EG www.affills.com to include:

<script type="text/javascript" src="http://mydomain/cookiemonster.js"></script>

I am wanting to provide an affiliate with a script, the said script to hopefully write a cookie on their clients machines - ideally we would want to control the script ourselves.

However before trying this I just thought i would see if it is even possible.

Of course the other option would be for use to provide the actual script for the affiliate to put directly onto their site...

Thanks,

John

share|improve this question

2 Answers

up vote 3 down vote accepted

Yes, third party scripts can write cookies, and they will appear to belong to the domain of the page itself.

You can see this if you examine the cookies of any site using Google Analytics - the content comes from a third party (Google) but the _utm prefix cookies will be on the hosting site's domain.

To write third-party cookies (i.e. where the cookie is on the domain of the third party) requires that the cookies be sent in the headers of a download from that third party, and not written by JS code.

share|improve this answer
Thanks that's great! – John Oct 5 '12 at 13:57

What happenned when you tested it?

(yes, if the browser/user permits, it will record a cookie - but the domain of the cookie is determined by the domain the script was loaded from).

share|improve this answer
Not tested yet, just doing some background research before plowing into the code. Thanks for the tips though. Much appreciate. – John Oct 5 '12 at 13:56
I think this answer is incorrect. If loading the script includes some Set-Cookie HTTP headers, then those will be set in the script's domain, subject to third party cookie controls. If the script itself sets cookies, they'll be in the original site's domain. – Alnitak Oct 5 '12 at 15:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.