Does every web request send the browser\'s cookies?
I\'m not talking page views, but a request for an image, .js file, etc.
.js
Update If a w
Yes, as long as the URL requested is within the same domain and path defined in the cookie (and all of the other restrictions -- secure, httponly, not expired, etc) hold, then the cookie will be sent for every request.