a bit of a specific question. I've been reading about how to target ie10 and below but really haven't found any concrete answer that works for my situation.
I'm using a framework for my website that does not support ie10 (google's polymer) very well so I have an alternate page set up for when the user is using ie10 and below. I'm running into the issue that when I open my webpage in ie10, the resource required to get polymer to run platform.js
is causing so many errors that it's preventing the rest of my resources from loading somehow. platform.js
is at the top of my loading order, and I'm not loading asynchronously. I'm trying to target ie10 in a js file that has to load underneath platform.js
but my code isn't registering at all due to platform.js
causing so many errors.
I am wondering if there is a way to only load platform.js
if the browser is !ie10
while still putting it at the top of the load order. Ugh this is driving me insane. Even a link to where I can read about how to make my resources load only on certain events would be helpful. Thanks for any info!