safari
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
jQuery .click() works on every browser but Safari
var a = $(‘.shell a’)[0]; var evObj = document.createEvent(‘MouseEvents’); evObj.initMouseEvent(‘click’, true, true, window); a.dispatchEvent(evObj); See http://www.howtocreate.co.uk/tutorials/javascript/domevents (search for “Manually firing events”).
Z-Index not working on Safari – fine on Firefox and Chrome
This should probably fix your issue on safari -webkit-transform:translate3d(0,0,0);
Google Font not working on Safari
Your CSS should not only contain font-family: ‘Source Sans Pro’, sans-serif; it should also have values for FONT-STYLE and FONT-WEIGHT: font-family: ‘Source Sans Pro’, sans-serif; font-weight: 900; font-style: italic; in case you use a font that contains those values like for example: https://fonts.googleapis.com/css?family=Source+Sans+Pro:900italic
Safari changing font weights when unrelated animations are running
When you trigger GPU compositing (eg, through CSS animation), the browser sends that element to the GPU, but also anything that would appear on top of that element if its top/left properties were changed. This includes any position:relative elements that appear after the animating one. The solution is to give the animating element position:relative and … Read more