• Stars
    star
    116
  • Rank 303,894 (Top 6 %)
  • Language
    HTML
  • License
    MIT License
  • Created almost 11 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Safari 3rd party cookie in iframe workaround

Safari 3rd party cookie in iframe workaround

The demo: http://vitr.github.io/safari-cookie-in-iframe/demo.html

The problem: site A (main site) loads site B (framed site) in iframe. Site B sets some cookies (e.g. store session data), to function properly. These cookies are called 3rd party cookies, as they are not set by site A.

Safari browser on all platforms block 3rd party cookies by default.

This is pure javascript solution to the problem. The main idea is to redirect a visitor from the main site to the framed site just for setting a cookie. After that Safari allows to set cookies in iframes for the framed site, as the site has become not a third party any more.

This is very common problem for iframed Facebook applications. Sadly, if you don't have control over site B, you can't apply this solution.

2016 Update

The fix works well with recent Safari 9.1.1