Hi,
I'm looking for the best solution to dynamically change some images extension (from .svg to .png) only if the browser is IE.
I don't know what's the best solution :
- parse the html code with PHP
use jQuery with something like
$("img.svg2png").attr("src", ...);
dealing with htaccess and rewrite rules
- other solution ?
Thanks !