html - Image tracking pixel only fire on iphone -


say have tracking pixel in html

<img src="someurl.com" > 

how can fire on iphone 6? have tried giving image inline style display none, , display block in media query, not seem work. there way around this?

thanks

update

<style> @media screen  , (min-device-width : 320px)  , (max-device-width : 568px) {     .tracking-img{         display:block!important;     } } </style> 

and @ bottom of body have

<img class="tracking-img" style="display:none;" src="http://www.google-analytics.com/collect?tracking_stuff" /> 


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -