I want to use dd belatedpng so the PNG’s on my website appear properly on IE. The script I’ve always used on non-wordpress websites was
<!--[if lt IE 7 ]>
<script src="https://wordpress.stackexchange.com/questions/6582/js/dd_belatedpng.js"></script>
<script> DD_belatedPNG.fix('img, .ir'); </script>
<![endif]-->
Now that I need to use it on a WordPress website, I’m trying to find a way of adding script using enqueue script, although I don’t like it at all. At the end of the day, the theme is only going to be used on a single website, I’d prefer to hardcode the scripts path.
Anyway, is there a way of adding IE conditionals to enqueue script and or register script?