Is there any workaround to set third party cookie in Iframe for safari?

Introduction to tracking cookies “Tracking cookies” is a very important part of the online advertising ecosystem. There are many usage scenarios. Here’s one example called retargeting. It’s known that a lot of internet shoppers don’t make purchases right after they saw a good deal on an e-commerce website. They take a look, leave the website … Read more

Apply a Greasemonkey/Tampermonkey userscript to an iframe

In Greasemonkey (And Tampermonkey and most userscript engines) a script will fire on an iframe automatically if it meets the @include, @exclude, and/or @match directives. And, a popular question is how to stop Greasemonkey from firing on iframes. So, if your script had a match like: @match https://fiddle.jshell.net/* It would fire on jsFiddle “output” pages … Read more

embed openstreetmap iframe in github markdown

Not supported in GFM Embedding an <iframe> into GitHub-flavored Markdown (GFM) is not supported. Here’s the official stance on it from their specs: 6.11 Disallowed Raw HTML (extension) GFM enables the tagfilter extension, where the following HTML tags will be filtered when rendering HTML output: <title> <textarea> <style> <xmp> <iframe> <noembed> <noframes> <script> <plaintext> […] … Read more

Does a session cookie on different subdomain count as 3rd-party?

Cookies seem to be considered 3rd party if they come from different base domains (base domains being example.com or example.co.uk), but not if they come from different subdomains of the same base domain. myapp.example.com will be able to set cookies with domain myapp.example.com if it is embedded within www.example.com. Having myapp.example.com set cookies with domain … Read more

Iframe transparent background

I’ve used this creating an IFrame through Javascript and it worked for me: // IFrame points to the IFrame element, obviously IFrame.src=”https://stackoverflow.com/questions/1234127/about: blank”; IFrame.style.backgroundColor = “transparent”; IFrame.frameBorder = “0”; IFrame.allowTransparency=”true”; Not sure if it makes any difference, but I set those properties before adding the IFrame to the DOM. After adding it to the DOM, … Read more

tech